com.slamd.client
Class ClientException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.slamd.common.SLAMDException
              extended by com.slamd.client.ClientException
All Implemented Interfaces:
java.io.Serializable

public class ClientException
extends SLAMDException

This class defines an exception that may be thrown if a problem is encountered while performing some operation in the client.

Author:
Neil A. Wilson
See Also:
Serialized Form

Constructor Summary
ClientException(java.lang.String message)
          Creates a new SLAMD client exception with the specified message.
ClientException(java.lang.String message, java.lang.Throwable cause)
          Creates a new SLAMD client exception with the specified message and parent 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ClientException

public ClientException(java.lang.String message)
Creates a new SLAMD client exception with the specified message.

Parameters:
message - A message providing more information about the exception.

ClientException

public ClientException(java.lang.String message,
                       java.lang.Throwable cause)
Creates a new SLAMD client exception with the specified message and parent exception.

Parameters:
message - A message providing more information about the exception.
cause - The parent exception that triggered this client exception.