com.softwareag.centrasite.appl.framework.persistence
Class JBMException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.softwareag.centrasite.appl.framework.persistence.JBMException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
LockNotAvailableException, ObjectOutdatedException

public class JBMException
extends java.lang.RuntimeException

The base exception for JAXR-to-Bean Mapper.

See Also:
Serialized Form

Constructor Summary
JBMException(java.lang.String message)
          Creates a new instance with the given detail message and no cause.
JBMException(java.lang.String message, java.lang.Throwable cause)
          Creates a new instance with the given detail message and cause.
JBMException(java.lang.Throwable cause)
          Creates a new instance with the given cause.
 
Method Summary
 
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

JBMException

public JBMException(java.lang.String message,
                    java.lang.Throwable cause)
Creates a new instance with the given detail message and cause.

Parameters:
message - The detail message.
cause - The cause of the exception.

JBMException

public JBMException(java.lang.String message)
Creates a new instance with the given detail message and no cause.

Parameters:
message - The detail message.

JBMException

public JBMException(java.lang.Throwable cause)
Creates a new instance with the given cause. The detail message is obtained by invoking Throwable.getMessage() on the cause.

Parameters:
cause - The cause of the exception.