com.borland.primetime.node
Class NodeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.borland.primetime.node.NodeException
Direct Known Subclasses:
DuplicateNodeException

public class NodeException
extends java.lang.Exception

The parent class of all node system exceptions.

See Also:
Serialized Form

Constructor Summary
NodeException()
          Constructs a NodeException with null as its error detail message.
NodeException(java.lang.String description)
          Constructs a NodeException with the specified 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

NodeException

public NodeException()
Constructs a NodeException with null as its error detail message.

NodeException

public NodeException(java.lang.String description)
Constructs a NodeException with the specified detail message. The string s can be retrieved later by the Throwable.getMessage() method of class java.lang.Throwable.
Parameters:
s - the detail message.