Package ca.uhn.hl7v2.app
Class ApplicationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ca.uhn.hl7v2.app.ApplicationException
- All Implemented Interfaces:
Serializable
Represents any problem encountered during processing of a message by an
Application.
- Author:
- Bryan Tripp
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance ofApplicationExceptionwith the specified detail message.ApplicationException(String msg, Throwable cause) Constructs a new exception with the specified underlying cause and detail message.ApplicationException(Throwable cause) Constructs a new exception with the specified underlying 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
-
ApplicationException
Constructs an instance ofApplicationExceptionwith the specified detail message. -
ApplicationException
Constructs a new exception with the specified underlying cause.- Parameters:
cause- an exception that is the reason for this exception
-
ApplicationException
Constructs a new exception with the specified underlying cause and detail message.- Parameters:
msg- detail messagecause- an exception that is the reason for this exception
-