source: josm/trunk/src/org/openstreetmap/josm/plugins/PluginDownloadException.java @ 5241

Revision 3083, 470 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.plugins;
3
4public class PluginDownloadException extends Exception {
5
6    public PluginDownloadException() {
7        super();
8    }
9
10    public PluginDownloadException(String arg0, Throwable arg1) {
11        super(arg0, arg1);
12    }
13
14    public PluginDownloadException(String arg0) {
15        super(arg0);
16    }
17
18    public PluginDownloadException(Throwable arg0) {
19        super(arg0);
20    }
21}
Note: See TracBrowser for help on using the repository browser.