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