com.elasticpath.commons.exception
Class EpSystemException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.elasticpath.commons.exception.EpSystemException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
DuplicateKeyException, DuplicateNameException, EmailExistException, EmailNonExistException, EpBindException, EpCmWebException, EpDomainException, EpLicensingCorruptedException, EpLicensingExpiredException, EpLicensingInvalidException, EpLicensingMissingException, EpPersistenceException, EpRequestParameterBindingException, EpServiceException, EpSfWebException, UserIdExistException, UserIdNonExistException

public class EpSystemException
extends java.lang.RuntimeException

The generic exception class for the com.elasticpath package.

See Also:
Serialized Form

Constructor Summary
EpSystemException(java.lang.String message)
          Creates a new EpSystemException object with the given message.
EpSystemException(java.lang.String message, java.lang.Throwable cause)
          Creates a new EpSystemException object using the given message and cause exception.
 
Method Summary
 
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
 

Constructor Detail

EpSystemException

public EpSystemException(java.lang.String message)
Creates a new EpSystemException object with the given message.

Parameters:
message - the reason for this EpSystemException.

EpSystemException

public EpSystemException(java.lang.String message,
                         java.lang.Throwable cause)
Creates a new EpSystemException object using the given message and cause exception.

Parameters:
message - the reason for this EpSystemException.
cause - the Throwable that caused this EpSystemException.