Package org.openstreetmap.josm.tools
Class UncheckedParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.openstreetmap.josm.tools.UncheckedParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class UncheckedParseException extends java.lang.RuntimeException
Signals that an error has been reached unexpectedly while parsing.- Since:
- 9385
- See Also:
ParseException, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UncheckedParseException()Constructs a newUncheckedParseException.UncheckedParseException(java.lang.String message)Constructs a newUncheckedParseExceptionwith the specified detail message.UncheckedParseException(java.lang.String message, java.lang.Throwable cause)Constructs a newUncheckedParseExceptionwith the specified detail message and cause.UncheckedParseException(java.lang.Throwable cause)Constructs a newUncheckedParseExceptionwith the specified cause.
-
-
-
Constructor Detail
-
UncheckedParseException
public UncheckedParseException()
Constructs a newUncheckedParseException.
-
UncheckedParseException
public UncheckedParseException(java.lang.String message)
Constructs a newUncheckedParseExceptionwith the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
UncheckedParseException
public UncheckedParseException(java.lang.String message, java.lang.Throwable cause)
Constructs a newUncheckedParseExceptionwith the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
UncheckedParseException
public UncheckedParseException(java.lang.Throwable cause)
Constructs a newUncheckedParseExceptionwith the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
-