Package com.aspectran.utils.apon
Class AponParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.aspectran.utils.apon.AponParseException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MalformedAponException
Base for Exceptions thrown during parsing of a APON-formatted document.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSimple constructor.AponParseException
(String msg) Constructor to create exception with a message.AponParseException
(String msg, Throwable cause) Constructor to create exception to wrap another exception and pass a message.AponParseException
(Throwable cause) Constructor to create exception to wrap another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AponParseException
public AponParseException()Simple constructor. -
AponParseException
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
AponParseException
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
AponParseException
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- the messagecause
- the real cause of the exception
-