Class RequestParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.aspectran.core.activity.ActivityException
com.aspectran.core.activity.request.RequestException
com.aspectran.core.activity.request.RequestParseException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MissingMandatoryAttributesException
,MissingMandatoryParametersException
,MultipartRequestParseException
,SizeLimitExceededException
Exception thrown when request could not be parsed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSimple constructor.Constructor to create exception with a message.RequestParseException
(String msg, Throwable cause) Constructor to create exception to wrap another exception and pass a message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RequestParseException
public RequestParseException()Simple constructor. -
RequestParseException
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
RequestParseException
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- the messagecause
- the real cause of the exception
-