borland Packages Class Hierarchy jbcl.util Package Index
java.lang.Object +----borland.jbcl.util.ExceptionChain
Constructors Properties Methods
Implements Serializable
The ExceptionChain component represents the node of a ChainedException object (the linked list of exceptions) that can be traversed.
See also: borland.jbcl.control.ExceptionDialog, borland.jbcl.dataset.DataSetException
public ExceptionChain()Constructs a new ExceptionChain.
public Exception getException()Places an exception at this node.
public ExceptionChain getNext()Moves to the next ExceptionChain instance. Returns null for the last instance.
public void append(java.lang.Exception ex)Adds an ExceptionChain instance.
Parameters:
public boolean hasExceptions()Returns true if there is an exception instance in the chain.
public void printStackTrace(java.io.PrintStream out)Prints all exception stack traces in the chain.
Parameters: