Package org.forgerock.audit
Class AuditException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.audit.AuditException
- All Implemented Interfaces:
 Serializable
Root class of all exceptions in the Commons Audit Framework.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionAuditException(String message) Constructs an AuditException using the givenmessage.AuditException(String message, Throwable cause) Constructs an AuditException using the givenmessageand parentcause.AuditException(Throwable cause) Constructs an AuditException using the given parentcause. - 
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
AuditException
Constructs an AuditException using the given parentcause.- Parameters:
 cause- Error cause
 - 
AuditException
Constructs an AuditException using the givenmessage.- Parameters:
 message- Error message
 - 
AuditException
Constructs an AuditException using the givenmessageand parentcause.- Parameters:
 message- Error messagecause- Error cause
 
 -