demo
Class ClientException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--demo.ClientException
All Implemented Interfaces:
java.io.Serializable

public class ClientException
extends java.lang.Exception

The exception thrown by the client.

Version:
.1
Author:
Brice Daniels
See Also:
Serialized Form

Constructor Summary
ClientException()
          Creates a new instance of ClientException without detail message.
ClientException(java.lang.String msg)
          Constructs an instance of ClientException with the specified detail message.
 
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()
Creates a new instance of ClientException without detail message.


ClientException

public ClientException(java.lang.String msg)
Constructs an instance of ClientException with the specified detail message.

Parameters:
msg - the detail message.