Parsing Engine

danbikel.switchboard
Class UnrecognizedClientException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by java.rmi.RemoteException
                  extended by danbikel.switchboard.UnrecognizedClientException
All Implemented Interfaces:
Serializable

public class UnrecognizedClientException
extends RemoteException

An exception raised when a switchboard method with a client ID parameter is called with an invalid client ID.

See Also:
SwitchboardRemote, Switchboard, Serialized Form

Field Summary
 
Fields inherited from class java.rmi.RemoteException
detail
 
Constructor Summary
UnrecognizedClientException()
          Constructs a new UnrecognizedClientException.
UnrecognizedClientException(String msg)
          Constructs a new UnrecognizedClientException with the specified message.
UnrecognizedClientException(String msg, Throwable ex)
          Constructs a new UnrecognizedClientException with the specified message and nested exception.
 
Method Summary
 
Methods inherited from class java.rmi.RemoteException
getCause, getMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, 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

UnrecognizedClientException

public UnrecognizedClientException()
Constructs a new UnrecognizedClientException.


UnrecognizedClientException

public UnrecognizedClientException(String msg)
Constructs a new UnrecognizedClientException with the specified message.


UnrecognizedClientException

public UnrecognizedClientException(String msg,
                                   Throwable ex)
Constructs a new UnrecognizedClientException with the specified message and nested exception.


Parsing Engine

Author: Dan Bikel.