org.enhydra.shark.api.internal.eventaudit
Class EventAuditException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.enhydra.shark.api.RootException
              extended byorg.enhydra.shark.api.internal.eventaudit.EventAuditException
All Implemented Interfaces:
java.io.Serializable

public class EventAuditException
extends RootException

Class EventAuditException indicates exceptional condition occurring in persistence layer, ie. failing transaction.

Version:
1.0
See Also:
Serialized Form

Constructor Summary
EventAuditException(java.lang.String message)
          Constructs a new exception with the specified detail message.
EventAuditException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
EventAuditException(java.lang.Throwable cause)
          Constructs a new exception with cause for throwable.
 
Methods inherited from class org.enhydra.shark.api.RootException
getCause, initCause, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EventAuditException

public EventAuditException(java.lang.String message)
Constructs a new exception with the specified detail message.

Parameters:
message - the detail message for new EventAuditException.

EventAuditException

public EventAuditException(java.lang.Throwable cause)
Constructs a new exception with cause for throwable. Message is created by super constructor (java.lang.Exception), if cause isn't null - cause.toString().

Parameters:
cause - Throwable which caused this EventAuditException.

EventAuditException

public EventAuditException(java.lang.String message,
                           java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - the detail message for new EventAuditException.
cause - Throwable which caused this EventAuditException.