Package com.aspectran.core.context
Class InsufficientEnvironmentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- com.aspectran.core.context.InsufficientEnvironmentException
-
- All Implemented Interfaces:
java.io.Serializable
public class InsufficientEnvironmentException extends java.lang.IllegalStateExceptionAn exception is thrown when Aspectran fails to run properly due to insufficient environment settings.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InsufficientEnvironmentException()Constructs a InsufficientEnvironmentException.InsufficientEnvironmentException(java.lang.String msg)Constructs an InsufficientEnvironmentException with the specified message.InsufficientEnvironmentException(java.lang.String msg, java.lang.Throwable cause)Constructs an AspectranCheckedException with the specified message and wrapped exception.InsufficientEnvironmentException(java.lang.Throwable cause)Constructs an InsufficientEnvironmentException with the wrapped exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPrettyMessage()
-
-
-
Constructor Detail
-
InsufficientEnvironmentException
public InsufficientEnvironmentException()
Constructs a InsufficientEnvironmentException.
-
InsufficientEnvironmentException
public InsufficientEnvironmentException(java.lang.String msg)
Constructs an InsufficientEnvironmentException with the specified message.- Parameters:
msg- the specific message
-
InsufficientEnvironmentException
public InsufficientEnvironmentException(java.lang.Throwable cause)
Constructs an InsufficientEnvironmentException with the wrapped exception.- Parameters:
cause- the real cause of the exception
-
InsufficientEnvironmentException
public InsufficientEnvironmentException(java.lang.String msg, java.lang.Throwable cause)Constructs an AspectranCheckedException with the specified message and wrapped exception.- Parameters:
msg- the specific messagecause- the real cause of the exception
-
-