source: josm/trunk/src/org/openstreetmap/josm/io/OsmTransferCanceledException.java@ 14108

Last change on this file since 14108 was 13493, checked in by Don-vip, 6 years ago

see #11924, see #15560, see #16048 - tt HTML tag is deprecated in HTML5: use code instead

  • Property svn:eol-style set to native
File size: 980 bytes
RevLine 
[1523]1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
[5386]4/**
5 * Exception thrown when a communication with the OSM server has been cancelled by the user.
6 */
[4310]7public class OsmTransferCanceledException extends OsmTransferException {
[1523]8
[6987]9 /**
[8415]10 * Constructs a new {@code OsmTransferCanceledException}, without message.
11 * @param message The detail message (which is saved for later retrieval by the {@link #getMessage} method)
12 * @since 8415
[6987]13 */
[8415]14 public OsmTransferCanceledException(String message) {
15 super(message);
[6987]16 }
17
18 /**
19 * Constructs a new {@code OsmTransferCanceledException}, with given root cause.
20 * @param cause the cause (which is saved for later retrieval by the {@link #getCause} method).
[13493]21 * A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
[6987]22 */
23 public OsmTransferCanceledException(Throwable cause) {
24 super(cause);
25 }
[1523]26}
Note: See TracBrowser for help on using the repository browser.