Package com.aspectran.core.util.apon
Class InvalidParameterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aspectran.core.util.apon.InvalidParameterException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
IncompatibleParameterValueTypeException
,UnknownParameterException
public class InvalidParameterException extends java.lang.RuntimeException
Exception thrown when an invalid parameter is encountered.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidParameterException(java.lang.String msg)
Constructor to create exception with a message.InvalidParameterException(java.lang.String msg, java.lang.Throwable cause)
Constructor to create exception to wrap another exception and pass a message.InvalidParameterException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.
-
-
-
Constructor Detail
-
InvalidParameterException
public InvalidParameterException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
InvalidParameterException
public InvalidParameterException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
InvalidParameterException
public InvalidParameterException(java.lang.String msg, java.lang.Throwable cause)
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- the messagecause
- the real cause of the exception
-
-