Package ca.uhn.hl7v2.conf
Class ProfileException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ca.uhn.hl7v2.conf.ProfileException
- All Implemented Interfaces:
Serializable
Represents something wrong with a profile. This is distinguished from
something that is wrong with a message according to a profile (in the latter
case, an HL7Exception might be thrown when the message is validated against
the profile).
- Author:
- Bryan Tripp
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionProfileException(String msg) Constructs an instance ofProfileExceptionwith the specified detail message.ProfileException(String msg, Throwable cause) Constructs an instance ofProfileExceptionwith the specified cause and detail 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
-
ProfileException
Constructs an instance ofProfileExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
ProfileException
Constructs an instance ofProfileExceptionwith the specified cause and detail message.- Parameters:
msg- the detail message.cause- the underlying cause of the exception
-