com.elasticpath.sfweb
Class EpRequestParameterBindingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.elasticpath.commons.exception.EpSystemException
com.elasticpath.sfweb.EpRequestParameterBindingException
- All Implemented Interfaces:
- java.io.Serializable
public class EpRequestParameterBindingException
- extends EpSystemException
This exception gets thrown when binding errors of request parameter happens. For example, a number is expected for category UID in the http
request, if we got a non-number string, this exception will get thrown.
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
EpRequestParameterBindingException
public EpRequestParameterBindingException(java.lang.String message)
- Creates a new
EpWebException object with the given message.
- Parameters:
message - the reason for this EpWebException.
EpRequestParameterBindingException
public EpRequestParameterBindingException(java.lang.String message,
java.lang.Throwable cause)
- Creates a new
EpWebException object using the given message and cause exception.
- Parameters:
message - the reason for this EpWebException.cause - the Throwable that caused this EpServiceException.