Changeset 10103 in josm for trunk/src/org
- Timestamp:
- 2016-04-03T15:42:30+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/help
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/help/HelpContentReaderException.java
r6987 r10103 5 5 private int responseCode; 6 6 7 public HelpContentReaderException(String message, Throwable cause) {8 super(message, cause);9 }10 7 /** 8 * Constructs a new {@code HelpContentReaderException}. 9 * @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method. 10 */ 11 11 public HelpContentReaderException(String message) { 12 12 super(message); 13 13 } 14 14 15 /** 16 * Constructs a new {@code HelpContentReaderException}. 17 * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method). 18 * (A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown.) 19 */ 15 20 public HelpContentReaderException(Throwable cause) { 16 21 super(cause); -
trunk/src/org/openstreetmap/josm/gui/help/MissingHelpContentException.java
r6987 r10103 2 2 package org.openstreetmap.josm.gui.help; 3 3 4 /** 5 * Exception thrown when help content is missing. 6 * @since 2308 7 */ 4 8 public class MissingHelpContentException extends HelpContentReaderException { 5 9 6 public MissingHelpContentException(String message, Throwable cause) {7 super(message, cause);8 }9 10 /** 11 * Constructs a new {@code MissingHelpContentException}. 12 * @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method. 13 */ 10 14 public MissingHelpContentException(String message) { 11 15 super(message); 12 16 } 13 14 public MissingHelpContentException(Throwable cause) {15 super(cause);16 }17 17 }
Note:
See TracChangeset
for help on using the changeset viewer.