Changeset 6987 in josm for trunk/src/org/openstreetmap/josm/io/OsmTransferCanceledException.java
- Timestamp:
- 2014-04-16T02:29:53+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmTransferCanceledException.java
r5386 r6987 7 7 public class OsmTransferCanceledException extends OsmTransferException { 8 8 9 /** 10 * Constructs a new {@code OsmTransferCanceledException}, without root cause. 11 */ 12 public OsmTransferCanceledException() { 13 14 } 15 16 /** 17 * Constructs a new {@code OsmTransferCanceledException}, with given root cause. 18 * @param cause the cause (which is saved for later retrieval by the {@link #getCause} method). 19 * A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown. 20 */ 21 public OsmTransferCanceledException(Throwable cause) { 22 super(cause); 23 } 9 24 }
Note:
See TracChangeset
for help on using the changeset viewer.