| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception com.bigbross.bossa.BossaException
All known Subclasses: com.bigbross.bossa.wfnet.SetAttributeException, com.bigbross.bossa.PersistenceException, com.bigbross.bossa.io.DataTransferException, com.bigbross.bossa.wfnet.EvaluationException,
BossaException | public class BossaException extends Exception (Code) | | This class represents an exception of the Bossa system.
This exception also implements the behaviour of a nested (or chained)
exception, such as the Throwable class in Java 1.4.
This is an exception which may contain another throwable which
caused it to get thrown.
author: BigBross Team |
Constructor Summary | |
public | BossaException() Constructs a new BossaException object with
null as its detail message. | public | BossaException(String message) Constructs a new BossaException object with the
specified detail message. | public | BossaException(String message, Throwable cause) Constructs a new BossaException object with the
specified detail message and cause. | public | BossaException(Throwable cause) Constructs a new BossaException object with the
specified cause and a detail message of
cause.toString() . |
Method Summary | |
public Throwable | getCause() Returns the cause of this BossaException . | public void | printStackTrace() Prints this BossaException object and its
backtrace to the standard error stream. | public void | printStackTrace(PrintStream ps) Prints this BossaException object and its
backtrace to the specified print stream. | public void | printStackTrace(PrintWriter pw) Prints this BossaException object and its
backtrace to the specified print writer. |
BossaException | public BossaException()(Code) | | Constructs a new BossaException object with
null as its detail message.
|
BossaException | public BossaException(String message)(Code) | | Constructs a new BossaException object with the
specified detail message.
Parameters: message - the detail message. |
BossaException | public BossaException(String message, Throwable cause)(Code) | | Constructs a new BossaException object with the
specified detail message and cause.
Parameters: message - the detail message. Parameters: cause - the cause. |
BossaException | public BossaException(Throwable cause)(Code) | | Constructs a new BossaException object with the
specified cause and a detail message of
cause.toString() .
Parameters: cause - the cause. |
getCause | public Throwable getCause()(Code) | | Returns the cause of this BossaException . The
cause is the throwable that caused this
BossaException object to get thrown.
the cause. |
printStackTrace | public void printStackTrace()(Code) | | Prints this BossaException object and its
backtrace to the standard error stream.
|
printStackTrace | public void printStackTrace(PrintStream ps)(Code) | | Prints this BossaException object and its
backtrace to the specified print stream.
Parameters: ps - PrintStream object to use for output. |
printStackTrace | public void printStackTrace(PrintWriter pw)(Code) | | Prints this BossaException object and its
backtrace to the specified print writer.
Parameters: pw - PrintWriter object to use for output. |
|
|
|