Package xal
Class XalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
xal.XalException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ModelException
,ParsingException
General XAL base exception.
- Since:
- Oct 19, 2001
- Version:
- 2.0
- Author:
- Christopher K. Allen
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates newXalException
without detail message.XalException
(String msg) Constructs anXalException
with the specified detail message.XalException
(String strMsg, Throwable excSrc) Create a newXalException
object which is spawned (in principle) by the given exception object and has the given explanation message.XalException
(Throwable excSrc) Create a newXalException
object which is spawned (in principle) by the given exception object. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XalException
public XalException()Creates newXalException
without detail message. -
XalException
Constructs anXalException
with the specified detail message.- Parameters:
msg
- the detail message.
-
XalException
Create a newXalException
object which is spawned (in principle) by the given exception object and has the given explanation message.- Parameters:
strMsg
- explanation message for the exceptionexcSrc
- originating cause for the exception- Since:
- Apr 27, 2011
-
XalException
Create a newXalException
object which is spawned (in principle) by the given exception object.- Parameters:
excSrc
- originating cause for the exception- Since:
- Apr 27, 2011
-