// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.data.osm; public class DataIntegrityProblemException extends RuntimeException { public DataIntegrityProblemException(String message) { super(message); } }