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

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