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

Last change on this file since 3715 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
  • 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.