oracle.owb.foundation
Class OWBException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--oracle.owb.foundation.OWBException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ComponentDeletedException, DerivationException, MapConnectionFailureException

public class OWBException
extends java.lang.RuntimeException

OWBException is a runtime exception that usually signals either a non-recoverable error, or an error the caller would normally not know how to handle. It is generally thrown as a result of a programming error or a system error.

See Also:
Serialized Form

Constructor Summary
OWBException()
          Constructs a OWBException with no detail message.
OWBException(java.lang.String s)
          Constructs a OWBException with the specified detail message.
 
Method Summary
 java.lang.String getMessage()
          Returns the error message string of this OWBException object.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OWBException

public OWBException()
Constructs a OWBException with no detail message.

OWBException

public OWBException(java.lang.String s)
Constructs a OWBException with the specified detail message.
Parameters:
s - the detail message.
Method Detail

getMessage

public java.lang.String getMessage()
Returns the error message string of this OWBException object.
Overrides:
getMessage in class java.lang.Throwable