Package com.aspectran.core.context
Class AspectranCheckedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.aspectran.core.context.AspectranCheckedException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ActivityContextBuilderException,ActivityContextParserException,AdapterException,IllegalRuleException,InvalidResourceException,TemplateEngineProcessException,UnreadableSessionDataException,UnwritableSessionDataException,ViewDispatcherException
public class AspectranCheckedException extends java.lang.ExceptionClass for constructing checked Exceptions with a given root cause.- Since:
- 2.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AspectranCheckedException()Constructs a AspectranCheckedException.AspectranCheckedException(java.lang.String msg)Constructs a AspectranCheckedException with the specified message.AspectranCheckedException(java.lang.String msg, java.lang.Throwable cause)Constructs a AspectranCheckedException with the specified message and wrapped exception.AspectranCheckedException(java.lang.Throwable cause)Constructs a AspectranCheckedException with the wrapped exception.
-
-
-
Constructor Detail
-
AspectranCheckedException
public AspectranCheckedException()
Constructs a AspectranCheckedException.
-
AspectranCheckedException
public AspectranCheckedException(java.lang.String msg)
Constructs a AspectranCheckedException with the specified message.- Parameters:
msg- the specific message
-
AspectranCheckedException
public AspectranCheckedException(java.lang.Throwable cause)
Constructs a AspectranCheckedException with the wrapped exception.- Parameters:
cause- the real cause of the exception
-
AspectranCheckedException
public AspectranCheckedException(java.lang.String msg, java.lang.Throwable cause)Constructs a AspectranCheckedException with the specified message and wrapped exception.- Parameters:
msg- the specific messagecause- the real cause of the exception
-
-