Package org.forgerock.audit
Class AuditException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- org.forgerock.audit.AuditException
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class AuditException extends Exception
Root class of all exceptions in the Commons Audit Framework.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description AuditException(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 Detail
- 
AuditException
public AuditException(Throwable cause)
Constructs an AuditException using the given parentcause.- Parameters:
 cause- Error cause
 
- 
AuditException
public AuditException(String message)
Constructs an AuditException using the givenmessage.- Parameters:
 message- Error message
 
 - 
 
 -