com.borland.primetime.node
Class DuplicateNodeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.borland.primetime.node.NodeException
                    |
                    +--com.borland.primetime.node.DuplicateNodeException

public class DuplicateNodeException
extends NodeException

Signals that an attempt to create a duplicate node has been detected. Nodes within a project must have unique Urls and node numbers. Projects themselves must be associated with unique Urls.

See Also:
Serialized Form

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

DuplicateNodeException

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

DuplicateNodeException

public DuplicateNodeException(java.lang.String description)
Constructs a DuplicateNodeException 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.