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

Last change on this file since 11587 was 6987, checked in by Don-vip, 10 years ago

sonar - fix some more issues

  • Property svn:eol-style set to native
File size: 518 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 final String htmlMessage;
7
8 public DataIntegrityProblemException(String message) {
9 this(message, null);
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.