org.eclipse.stp.core.saf.exception
Class SAFException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.eclipse.stp.core.saf.exception.SAFException
All Implemented Interfaces:
java.io.Serializable

public class SAFException
extends java.lang.Exception

This exception can be thrown by methods in ISAFManager to report errors.

See Also:
Serialized Form

Constructor Summary
SAFException()
          Default constructor
SAFException(java.lang.String message)
          Creates an exception object from an error message.
SAFException(java.lang.String message, java.lang.Throwable cause)
          Creates an exception object from an error message and another exception.
SAFException(java.lang.Throwable cause)
          Creates an exception object from another exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SAFException

public SAFException()
Default constructor


SAFException

public SAFException(java.lang.String message)
Creates an exception object from an error message.

Parameters:
message - translated text describing the error

SAFException

public SAFException(java.lang.String message,
                    java.lang.Throwable cause)
Creates an exception object from an error message and another exception.

Parameters:
message - translated text describing the error
cause - the base exception object

SAFException

public SAFException(java.lang.Throwable cause)
Creates an exception object from another exception.

Parameters:
cause - the base exception object