| Revision 5170,
507 bytes
checked in by Don-vip, 6 weeks ago
(diff) |
|
cleanup svn:mime-type properties preventing Java sources from being viewed as such on Trac
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file. |
|---|
| 2 | package org.openstreetmap.josm.data.osm; |
|---|
| 3 | |
|---|
| 4 | public 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.