Class ProcessingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- fr.gouv.vitam.common.exception.VitamException
-
- fr.gouv.vitam.processing.common.exception.ProcessingException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ArchiveUnitContainDataObjectException,HandlerNotFoundException,InvalidRuleException,MetaDataContainSpecialCharactersException,MissingFieldException,MissingMandatoryVersionException,ProcessingAttachmentRequiredException,ProcessingAttachmentUnauthorizedException,ProcessingBadRequestException,ProcessingDuplicatedVersionException,ProcessingInternalServerException,ProcessingMalformedDataException,ProcessingManifestReferenceException,ProcessingNotFoundException,ProcessingNotValidLinkingException,ProcessingObjectGroupEveryDataObjectVersionException,ProcessingObjectGroupLifeCycleException,ProcessingObjectGroupLinkingException,ProcessingObjectGroupMasterMandatoryException,ProcessingObjectReferenceException,ProcessingRetryAsyncException,ProcessingStorageWorkspaceException,ProcessingTooManyUnitsFoundException,ProcessingUnitLinkingException,ProcessWorkflowNotFoundException,StepAlreadyExecutedException,WorkerFamilyNotFoundException,WorkerNotFoundException
public class ProcessingException extends VitamException
Exception is the superclass of all VITAM processing exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessingException(java.lang.String message)ProcessingException constructor Construct the processing exception with a messageProcessingException(java.lang.String message, java.lang.Throwable cause)ProcessingException constructor Construct the processing exception with a message and a throwable exceptionProcessingException(java.lang.Throwable cause)ProcessingException constructor Construct the processing exception with a throwable exception
-
Method Summary
-
Methods inherited from class fr.gouv.vitam.common.exception.VitamException
getVitamError, setVitamError
-
-
-
-
Constructor Detail
-
ProcessingException
public ProcessingException(java.lang.String message, java.lang.Throwable cause)ProcessingException constructor Construct the processing exception with a message and a throwable exception- Parameters:
message- associated messagecause- associated cause
-
ProcessingException
public ProcessingException(java.lang.Throwable cause)
ProcessingException constructor Construct the processing exception with a throwable exception- Parameters:
cause- associated cause
-
ProcessingException
public ProcessingException(java.lang.String message)
ProcessingException constructor Construct the processing exception with a message- Parameters:
message- associated message
-
-