Package org.dellroad.hl7
Class HL7ContentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.dellroad.hl7.HL7ContentException
-
- All Implemented Interfaces:
Serializable
public class HL7ContentException extends Exception
Exception thrown to indicate invalid HL7 content was encountered.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HL7ContentException()
HL7ContentException(String message)
HL7ContentException(String message, Throwable cause)
HL7ContentException(Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContent()
Get the offending content.HL7ContentException
setContent(String content)
Record the offending text.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getContent
public String getContent()
Get the offending content.- Returns:
- offending text, or
null
if none was associated with this instance
-
setContent
public HL7ContentException setContent(String content)
Record the offending text.- Parameters:
content
- offending text- Returns:
- this instance
-
-