toolbox.services
Class ServiceException

Package class diagram package ServiceException
java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by toolbox.services.ServiceException
All Implemented Interfaces:
java.io.Serializable

public class ServiceException
extends java.lang.Exception

Exception that is generated when a exceptions are encountered during any service related operations.

See Also:
Serialized Form

Constructor Summary
ServiceException(java.lang.Exception ex)
          Creates a new ServiceException from the given Exception.
ServiceException(java.lang.String msg)
          Generates a ServiceException with the given message.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ServiceException

public ServiceException(java.lang.Exception ex)
Creates a new ServiceException from the given Exception.

Parameters:
ex - Underlying exception that occured.

ServiceException

public ServiceException(java.lang.String msg)
Generates a ServiceException with the given message.

Parameters:
msg - String containing the exception message.