Package xal.tools.data
Class DataFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
xal.tools.data.DataFormatException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MissingDataException
- Author:
- Christopher Allen
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance ofDataFormatException
without detail message.Constructs an instance ofDataFormatException
with the specified detail message.DataFormatException
(String msg, Exception exc) Create a new instance ofDataFormatException
with the given error message and the given root cause for the exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataFormatException
public DataFormatException()Creates a new instance ofDataFormatException
without detail message. -
DataFormatException
Constructs an instance ofDataFormatException
with the specified detail message.- Parameters:
msg
- the detail message.
-
DataFormatException
Create a new instance ofDataFormatException
with the given error message and the given root cause for the exception.- Parameters:
msg
- descriptive message for exceptionexc
- originating exception object (i.e., causing this exception)- Since:
- May 11, 2011
-