Package xal.tools.dsp
Class DataProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
xal.tools.dsp.DataProcessingException
- All Implemented Interfaces:
Serializable
Exception representing an unrecoverable error in data processing.
- Author:
- Christopher K. Allen
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new exception with no detail message.DataProcessingException
(String message) Create a new exception with a detail message.DataProcessingException
(String message, Throwable cause) Create a new exception with a detail message and cause.DataProcessingException
(Throwable cause) Create a new exception with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataProcessingException
public DataProcessingException()Create a new exception with no detail message. -
DataProcessingException
Create a new exception with a cause. The cause object is saved for later retrieval by theThrowable.getCause()
method. A null value is permitted, and indicates that the cause is nonexistent or unknown.- Parameters:
cause
- cause of the exception- See Also:
-
DataProcessingException
Create a new exception with a detail message.- Parameters:
message
- detail message
-
DataProcessingException
Create a new exception with a detail message and cause.- Parameters:
message
- detail messagecause
- the cause object- See Also:
-