|
Collaboration API Documentation | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--java.lang.RuntimeException | +--com.filenet.bso.api.util.BsoSecurityException
Base class for Case Management Java API unchecked runtime exceptions.
Constructor Summary | |
BsoSecurityException()
Constructs a BsoRuntimeException with no specific
detail message. |
|
BsoSecurityException(java.lang.String msg)
Constructs a BsoRuntimeException with a given
detail message. |
|
BsoSecurityException(java.lang.String msg,
java.lang.Throwable e)
Constructs a BsoRuntimeException with a given
detail message and the original exception. |
Method Summary | |
protected java.lang.String |
getBsoExceptionName()
Return the exception name. |
java.lang.Throwable |
getException()
Returns the original exception. |
void |
printStackTrace()
Prints the stack trace. |
void |
printStackTrace(java.io.PrintStream out)
Prints the stack trace to a given PrintStream . |
void |
printStackTrace(java.io.PrintWriter out)
Prints the stack trace to a given PrintWriter . |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public BsoSecurityException()
BsoRuntimeException
with no specific
detail message. This exception and exceptions derived from it are
unchecked exceptions which need not
be specified in a throws
clause or specifically caught.public BsoSecurityException(java.lang.String msg)
BsoRuntimeException
with a given
detail message.msg
- The detailed message.public BsoSecurityException(java.lang.String msg, java.lang.Throwable e)
BsoRuntimeException
with a given
detail message and the original exception.
If you specify null
for the e
parameter, constructs
the exception with only the detail message, which is equivalent to calling
BsoSecurityException(msg)
.
msg
- The detailed message.
e
- The original exception. Can be null
.Method Detail |
protected java.lang.String getBsoExceptionName()
public java.lang.Throwable getException()
Throwable
object underlying this exception.public void printStackTrace()
printStackTrace
in class java.lang.Throwable
public void printStackTrace(java.io.PrintStream out)
PrintStream
.
This method prints the stack trace of the original exception, if there is
one; if not, prints the stack trace of the current exception.printStackTrace
in class java.lang.Throwable
out
- The PrintStream
to use.public void printStackTrace(java.io.PrintWriter out)
PrintWriter
.
This method prints the stack trace of the original exception, if there is
one; if not, prints the stack trace of the current exception.printStackTrace
in class java.lang.Throwable
out
- The PrintWriter
to use.
|
Collaboration API Documentation | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |