source: josm/trunk/src/org/openstreetmap/josm/io/OsmTransferException.java@ 2667

Last change on this file since 2667 was 1169, checked in by stoecker, 15 years ago

removed usage of tab stops

File size: 450 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4public class OsmTransferException extends Exception {
5
6 public OsmTransferException() {
7 }
8
9 public OsmTransferException(String message) {
10 super(message);
11 }
12
13 public OsmTransferException(Throwable cause) {
14 super(cause);
15 }
16
17 public OsmTransferException(String message, Throwable cause) {
18 super(message, cause);
19 }
20
21}
Note: See TracBrowser for help on using the repository browser.