com.jpeterson.x10
Class GatewayStateError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--com.jpeterson.x10.ControlError
                    |
                    +--com.jpeterson.x10.GatewayStateError

public class GatewayStateError
extends ControlError

Signals an error caused by an illegal call to a method of a gateway. For example, it is illegal to request a deallocated Trasnmitter to transmit or to request any deallocated gateway to pause or resume.

See Also:
Form, Serialized Form

Constructor Summary
GatewayStateError()
          Construct a GatewayStateError with no detail message.
GatewayStateError(java.lang.String s)
          Construct a GatewayStateError with a detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GatewayStateError

public GatewayStateError()
Construct a GatewayStateError with no detail message.

GatewayStateError

public GatewayStateError(java.lang.String s)
Construct a GatewayStateError with a detail message. A detail message is a String that describes this particular exception.