Collaboration API Documentation

com.filenet.bso.api.util
Class BsoSecurityException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.filenet.bso.api.util.BsoSecurityException
All Implemented Interfaces:
java.io.Serializable

public class BsoSecurityException
extends java.lang.RuntimeException

Base class for Case Management Java API unchecked runtime exceptions.

See Also:
Serialized Form

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

BsoSecurityException

public BsoSecurityException()
Constructs a 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.

BsoSecurityException

public BsoSecurityException(java.lang.String msg)
Constructs a BsoRuntimeException with a given detail message.
Parameters:
msg - The detailed message.

BsoSecurityException

public BsoSecurityException(java.lang.String msg,
                            java.lang.Throwable e)
Constructs a 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).

Parameters:
msg - The detailed message.

e - The original exception. Can be null.
Method Detail

getBsoExceptionName

protected java.lang.String getBsoExceptionName()
Return the exception name.

getException

public java.lang.Throwable getException()
Returns the original exception.
Returns:
The Java Throwable object underlying this exception.

printStackTrace

public void printStackTrace()
Prints the stack trace. This method prints the stack trace of the original exception, if there is one; if not, prints the stack trace of the current exception.
Overrides:
printStackTrace in class java.lang.Throwable

printStackTrace

public void printStackTrace(java.io.PrintStream out)
Prints the stack trace to a given 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.
Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
out - The PrintStream to use.

printStackTrace

public void printStackTrace(java.io.PrintWriter out)
Prints the stack trace to a given 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.
Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
out - The PrintWriter to use.

Collaboration API Documentation

Copyright © 2002 - 2004 FileNet Corporation. All rights reserved.