Ignore:
Timestamp:
2012-03-08T22:01:06+01:00 (12 years ago)
Author:
simon04
Message:

fix #6561 - fix several overflowing dialog texts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/DataIntegrityProblemException.java

    r3083 r5059  
    44public class DataIntegrityProblemException extends RuntimeException {
    55
     6    private String htmlMessage;
     7
    68    public DataIntegrityProblemException(String message) {
    79        super(message);
    810    }
    911
     12    public DataIntegrityProblemException(String message, String htmlMessage) {
     13        super(message);
     14        this.htmlMessage = htmlMessage;
     15    }
     16
     17    public String getHtmlMessage() {
     18        return htmlMessage;
     19    }
    1020}
Note: See TracChangeset for help on using the changeset viewer.