mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
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:
@@ -24,6 +24,12 @@
|
||||
*/
|
||||
package org.alfresco.repo.action.scheduled;
|
||||
|
||||
/**
|
||||
* Exception for invalid cron expressions
|
||||
*
|
||||
* @author andyh
|
||||
*
|
||||
*/
|
||||
public class InvalidCronExpression extends ScheduledActionException
|
||||
{
|
||||
|
||||
@@ -32,21 +38,44 @@ public class InvalidCronExpression extends ScheduledActionException
|
||||
*/
|
||||
private static final long serialVersionUID = -6618964886875008727L;
|
||||
|
||||
/**
|
||||
* Invalid cron expression
|
||||
*
|
||||
* @param msgId
|
||||
*/
|
||||
public InvalidCronExpression(String msgId)
|
||||
{
|
||||
super(msgId);
|
||||
}
|
||||
|
||||
/**
|
||||
* Invalid cron expression
|
||||
*
|
||||
* @param msgId
|
||||
* @param msgParams
|
||||
*/
|
||||
public InvalidCronExpression(String msgId, Object[] msgParams)
|
||||
{
|
||||
super(msgId, msgParams);
|
||||
}
|
||||
|
||||
/**
|
||||
* Invalid cron expression
|
||||
*
|
||||
* @param msgId
|
||||
* @param cause
|
||||
*/
|
||||
public InvalidCronExpression(String msgId, Throwable cause)
|
||||
{
|
||||
super(msgId, cause);
|
||||
}
|
||||
|
||||
/**
|
||||
* Invalid cron expression
|
||||
* @param msgId
|
||||
* @param msgParams
|
||||
* @param cause
|
||||
*/
|
||||
public InvalidCronExpression(String msgId, Object[] msgParams, Throwable cause)
|
||||
{
|
||||
super(msgId, msgParams, cause);
|
||||
|
Reference in New Issue
Block a user