Package com.aspectran.core.context
Class AspectranRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aspectran.core.context.AspectranRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ActivityException,AspectException,AspectranServiceException,BeanException,LogException,NoSuchMessageException,TemplateException,TokenEvaluationException,TransletException,TransletScanFailedException
public class AspectranRuntimeException extends java.lang.RuntimeExceptionClass for constructing runtime Exceptions with a given root cause.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AspectranRuntimeException()Constructs a AspectranCheckedException.AspectranRuntimeException(java.lang.String msg)Constructs a AspectranCheckedException with the specified message.AspectranRuntimeException(java.lang.String msg, java.lang.Throwable cause)Constructs a AspectranCheckedException with the specified message and wrapped exception.AspectranRuntimeException(java.lang.Throwable cause)Constructs a AspectranCheckedException with the wrapped exception.
-
-
-
Constructor Detail
-
AspectranRuntimeException
public AspectranRuntimeException()
Constructs a AspectranCheckedException.
-
AspectranRuntimeException
public AspectranRuntimeException(java.lang.String msg)
Constructs a AspectranCheckedException with the specified message.- Parameters:
msg- the specific message
-
AspectranRuntimeException
public AspectranRuntimeException(java.lang.Throwable cause)
Constructs a AspectranCheckedException with the wrapped exception.- Parameters:
cause- the real cause of the exception
-
AspectranRuntimeException
public AspectranRuntimeException(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
-
-