Package org.openstreetmap.josm.plugins
Class PluginListParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openstreetmap.josm.plugins.PluginListParseException
-
- All Implemented Interfaces:
Serializable
public class PluginListParseException extends Exception
Exception thrown during plugin list parsing.- Since:
- 2817
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PluginListParseException(String message, Throwable cause)
Constructs a newPluginListParseException
with the specified detail message and cause.PluginListParseException(Throwable cause)
Constructs a newPluginListParseException
with the specified cause and a detail message of(cause==null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PluginListParseException
public PluginListParseException(String message, Throwable cause)
Constructs a newPluginListParseException
with the specified detail message and cause.- Parameters:
message
- message the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- cause the cause (which is saved for later retrieval by theThrowable.getCause()
method).
-
PluginListParseException
public PluginListParseException(Throwable cause)
Constructs a newPluginListParseException
with the specified cause and a detail message of(cause==null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).- Parameters:
cause
- cause the cause (which is saved for later retrieval by theThrowable.getCause()
method).
-
-