Package com.aspectran.core.util.apon
Class AponException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aspectran.core.util.apon.AponException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AponParseException
public class AponException extends java.lang.RuntimeExceptionThe Class AponException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AponException()Simple constructor.AponException(java.lang.String msg)Constructor to create exception with a message.AponException(java.lang.String msg, java.lang.Throwable cause)Constructor to create exception to wrap another exception and pass a message.AponException(java.lang.Throwable cause)Constructor to create exception to wrap another exception.
-
-
-
Constructor Detail
-
AponException
public AponException()
Simple constructor.
-
AponException
public AponException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg- a message to associate with the exception
-
AponException
public AponException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.- Parameters:
cause- the real cause of the exception
-
AponException
public AponException(java.lang.String msg, java.lang.Throwable cause)Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg- a message to associate with the exceptioncause- the real cause of the exception
-
-