edu.uoc.tfc.service
Class ClientServiceException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by edu.uoc.tfc.service.ClientServiceException
All Implemented Interfaces:
java.io.Serializable

public class ClientServiceException
extends java.lang.RuntimeException

The default exception thrown for unexpected errors occurring within ClientService.

See Also:
Serialized Form

Constructor Summary
ClientServiceException()
          The default constructor for ClientServiceException.
ClientServiceException(java.lang.String message)
          Constructs a new instance of ClientServiceException.
ClientServiceException(java.lang.String message, java.lang.Throwable throwable)
          Constructs a new instance of ClientServiceException.
ClientServiceException(java.lang.Throwable throwable)
          Constructs a new instance of ClientServiceException.
 
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

ClientServiceException

public ClientServiceException()
The default constructor for ClientServiceException.


ClientServiceException

public ClientServiceException(java.lang.Throwable throwable)
Constructs a new instance of ClientServiceException.

Parameters:
throwable - the parent Throwable

ClientServiceException

public ClientServiceException(java.lang.String message)
Constructs a new instance of ClientServiceException.

Parameters:
message - the throwable message.

ClientServiceException

public ClientServiceException(java.lang.String message,
                              java.lang.Throwable throwable)
Constructs a new instance of ClientServiceException.

Parameters:
message - the throwable message.
throwable - the parent of this Throwable.