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

Last change on this file since 4153 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
File size: 474 bytes
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.