Java doc tidy up in auditing and scheduled actions

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5295 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2007-03-05 15:51:09 +00:00
parent 5f0401612c
commit 48fe361cf2
16 changed files with 420 additions and 94 deletions

View File

@@ -39,21 +39,45 @@ public class ScheduledActionException extends AlfrescoRuntimeException
*/
private static final long serialVersionUID = -543079391770744598L;
/**
* Exception generated from scheduled actions
*
* @param msgId
*/
public ScheduledActionException(String msgId)
{
super(msgId);
}
/**
* Exception generated from scheduled actions
*
* @param msgId
* @param msgParams
*/
public ScheduledActionException(String msgId, Object[] msgParams)
{
super(msgId, msgParams);
}
/**
* Exception generated from scheduled actions
*
* @param msgId
* @param cause
*/
public ScheduledActionException(String msgId, Throwable cause)
{
super(msgId, cause);
}
/**
* Exception generated from scheduled actions
*
* @param msgId
* @param msgParams
* @param cause
*/
public ScheduledActionException(String msgId, Object[] msgParams, Throwable cause)
{
super(msgId, msgParams, cause);