source: josm/trunk/src/org/openstreetmap/josm/io/OsmApiInitializationException.java @ 5241

Revision 3083, 522 bytes checked in by bastiK, 2 years ago (diff)

added svn:eol-style=native to source files

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