Package com.attivio.sdk.error
Class SchedulerError
- java.lang.Object
-
- com.attivio.sdk.error.ErrorCode
-
- com.attivio.sdk.error.SchedulerError
-
- All Implemented Interfaces:
java.io.Serializable
public final class SchedulerError extends ErrorCode
Contains the error codes related to the scheduler service.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
BAD_CRON_EXPRESSION
SCHEDULER_SERVICE-5 Bad cron expression.static ErrorCode
INVALID_JOB
SCHEDULER_SERVICE-8 Error during validation.static ErrorCode
INVALID_VALIDATOR_CLASS
SCHEDULER_SERVICE-7 Error creating validator.static ErrorCode
JOB_CLASS_INVALID
SCHEDULER_SERVICE-3 A scheduled job definition references a job implementation class that does not implement interface com.attivio.platform.service.AttivioScheduledJobstatic ErrorCode
JOB_CLASS_NOT_FOUND
SCHEDULER_SERVICE-2 A scheduled job definition references a job implementation class that was not found.static ErrorCode
JOB_META_DATAT_ERROR
SCHEDULER_SERVICE-6 Error in job metadata.static ErrorCode
TASK_ALREADY_EXISTS
SCHEDULER_SERVICE-4 Attempted to create a task with a combination of owner and name that already exists.static ErrorCode
UNCATEGORIZED_FAILURE
SCHEDULER_SERVICE-1 Uncategorized scheduler failure.
-
Method Summary
-
Methods inherited from class com.attivio.sdk.error.ErrorCode
equals, formatError, getCategory, getCode, getErrorCode, hashCode, readResolve, toString
-
-
-
-
Field Detail
-
UNCATEGORIZED_FAILURE
public static final ErrorCode UNCATEGORIZED_FAILURE
SCHEDULER_SERVICE-1 Uncategorized scheduler failure.
-
JOB_CLASS_NOT_FOUND
public static final ErrorCode JOB_CLASS_NOT_FOUND
SCHEDULER_SERVICE-2 A scheduled job definition references a job implementation class that was not found.
-
JOB_CLASS_INVALID
public static final ErrorCode JOB_CLASS_INVALID
SCHEDULER_SERVICE-3 A scheduled job definition references a job implementation class that does not implement interface com.attivio.platform.service.AttivioScheduledJob
-
TASK_ALREADY_EXISTS
public static final ErrorCode TASK_ALREADY_EXISTS
SCHEDULER_SERVICE-4 Attempted to create a task with a combination of owner and name that already exists.
-
BAD_CRON_EXPRESSION
public static final ErrorCode BAD_CRON_EXPRESSION
SCHEDULER_SERVICE-5 Bad cron expression.
-
JOB_META_DATAT_ERROR
public static final ErrorCode JOB_META_DATAT_ERROR
SCHEDULER_SERVICE-6 Error in job metadata.
-
INVALID_VALIDATOR_CLASS
public static final ErrorCode INVALID_VALIDATOR_CLASS
SCHEDULER_SERVICE-7 Error creating validator.
-
INVALID_JOB
public static final ErrorCode INVALID_JOB
SCHEDULER_SERVICE-8 Error during validation.
-
-