Package xal.model
Class ModelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
xal.XalException
xal.model.ModelException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EnsembleException,PropagationException,SynchronizationException
Base exception class for exceptions thrown by the XAL online model.
- Since:
- Sept 9, 2002
- Author:
- Christopher K. Allen
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of ModelExceptionModelException(String strMsg) Creates a new instance of ModelException with messageModelException(String strMsg, Exception excSrc) Create a newModelExceptionobject which is spawned (in principle) by the given exception object and has the given explanation message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ModelException
public ModelException()Creates a new instance of ModelException -
ModelException
Creates a new instance of ModelException with message -
ModelException
Create a newModelExceptionobject 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
-