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:
Andrew Hind
2007-04-05 11:17:21 +00:00
parent 98f2e85cc0
commit 838b2bfcd3
5 changed files with 190 additions and 16 deletions

View File

@@ -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);