Package com.aspectran.core.context.rule
Class IllegalRuleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.aspectran.core.context.rule.IllegalRuleException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
BeanRuleException
public class IllegalRuleException extends java.lang.Exception
This exception will be thrown if an illegal rule is found.Created: 2017. 11. 10.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IllegalRuleException()
Simple constructorIllegalRuleException(java.lang.String msg)
Constructor to create exception with a message.IllegalRuleException(java.lang.String msg, java.lang.Throwable cause)
Constructor to create exception to wrap another exception and pass a message.IllegalRuleException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.
-
-
-
Constructor Detail
-
IllegalRuleException
public IllegalRuleException()
Simple constructor
-
IllegalRuleException
public IllegalRuleException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
IllegalRuleException
public IllegalRuleException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
IllegalRuleException
public IllegalRuleException(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
-
-