Parsing Engine

danbikel.switchboard
Class UnrecognizedServerException

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.UnrecognizedServerException
All Implemented Interfaces:
Serializable

public class UnrecognizedServerException
extends RemoteException

An exception raised when a switchboard method that has a server ID parameter is called with an invalid server ID. This exception is thrown, for example, by the Switchboard.getServer(int,int) method if a client requests an invalid server.

See Also:
SwitchboardRemote, Switchboard, Serialized Form

Field Summary
 
Fields inherited from class java.rmi.RemoteException
detail
 
Constructor Summary
UnrecognizedServerException()
          Constructs a new UnrecognizedServerException.
UnrecognizedServerException(String msg)
          Constructs a new UnrecognizedServerException with the specified message.
UnrecognizedServerException(String msg, Throwable ex)
          Constructs a new UnrecognizedServerException 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

UnrecognizedServerException

public UnrecognizedServerException()
Constructs a new UnrecognizedServerException.


UnrecognizedServerException

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


UnrecognizedServerException

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


Parsing Engine

Author: Dan Bikel.