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

Last change on this file since 6233 was 5170, checked in by Don-vip, 12 years ago

cleanup svn:mime-type properties preventing Java sources from being viewed as such on Trac

  • Property svn:eol-style set to native
File size: 507 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4public class DataIntegrityProblemException extends RuntimeException {
5
6 private String htmlMessage;
7
8 public DataIntegrityProblemException(String message) {
9 super(message);
10 }
11
12 public DataIntegrityProblemException(String message, String htmlMessage) {
13 super(message);
14 this.htmlMessage = htmlMessage;
15 }
16
17 public String getHtmlMessage() {
18 return htmlMessage;
19 }
20}
Note: See TracBrowser for help on using the repository browser.