mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Java doc updates
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5463 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -39,21 +39,45 @@ public class AuditException extends AlfrescoRuntimeException
|
||||
*/
|
||||
private static final long serialVersionUID = -7947190775692164588L;
|
||||
|
||||
/**
|
||||
* Simple message
|
||||
*
|
||||
* @param msgId
|
||||
*/
|
||||
public AuditException(String msgId)
|
||||
{
|
||||
super(msgId);
|
||||
}
|
||||
|
||||
/**
|
||||
* I18n message
|
||||
*
|
||||
* @param msgId
|
||||
* @param msgParams
|
||||
*/
|
||||
public AuditException(String msgId, Object[] msgParams)
|
||||
{
|
||||
super(msgId, msgParams);
|
||||
}
|
||||
|
||||
/**
|
||||
* Simple message ad nested exception
|
||||
*
|
||||
* @param msgId
|
||||
* @param cause
|
||||
*/
|
||||
public AuditException(String msgId, Throwable cause)
|
||||
{
|
||||
super(msgId, cause);
|
||||
}
|
||||
|
||||
/**
|
||||
* I18n message and exception.
|
||||
*
|
||||
* @param msgId
|
||||
* @param msgParams
|
||||
* @param cause
|
||||
*/
|
||||
public AuditException(String msgId, Object[] msgParams, Throwable cause)
|
||||
{
|
||||
super(msgId, msgParams, cause);
|
||||
|
Reference in New Issue
Block a user