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

Last change on this file since 7956 was 7509, checked in by stoecker, 10 years ago

remove tabs

  • Property svn:eol-style set to native
File size: 811 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4/**
5 * Exception thrown when a communication with the OSM server has been cancelled by the user.
6 */
7public class OsmTransferCanceledException extends OsmTransferException {
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 }
24}
Note: See TracBrowser for help on using the repository browser.