Package org.openstreetmap.josm.io
Class IllegalDataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openstreetmap.josm.io.IllegalDataException
-
- All Implemented Interfaces:
java.io.Serializable
public class IllegalDataException extends java.lang.Exception
Generic exception raised when illegal data is read.- Since:
- 2070
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IllegalDataException(java.lang.String message)Constructs a newIllegalDataException.IllegalDataException(java.lang.String message, java.lang.Throwable cause)Constructs a newIllegalDataException.IllegalDataException(java.lang.Throwable cause)Constructs a newIllegalDataException.
-
-
-
Constructor Detail
-
IllegalDataException
public IllegalDataException(java.lang.String message, java.lang.Throwable cause)
Constructs a newIllegalDataException.- 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).
-
IllegalDataException
public IllegalDataException(java.lang.String message)
Constructs a newIllegalDataException.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
IllegalDataException
public IllegalDataException(java.lang.Throwable cause)
Constructs a newIllegalDataException.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method).
-
-