source: josm/trunk/src/org/openstreetmap/josm/data/osm/DataIntegrityProblemException.java@ 2667

Last change on this file since 2667 was 2399, checked in by jttt, 14 years ago

Added map of primitives to dataset to make search by id faster
check if primitive already exist in addPrimitive and removePrimitive
use PrimitiveId instead of id + primitive type

  • Property svn:mime-type set to text/plain
File size: 253 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4public class DataIntegrityProblemException extends RuntimeException {
5
6 public DataIntegrityProblemException(String message) {
7 super(message);
8 }
9
10}
Note: See TracBrowser for help on using the repository browser.