Class ProcessingEngineException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- fr.gouv.vitam.common.exception.VitamException
-
- fr.gouv.vitam.processing.common.exception.ProcessingEngineException
-
- All Implemented Interfaces:
java.io.Serializable
public class ProcessingEngineException extends VitamException
Exception handled by the ProcessEngine.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessingEngineException(java.lang.String message)
ProcessingException constructor Construct the processing exception with a messageProcessingEngineException(java.lang.String message, java.lang.Throwable cause)
ProcessingException constructor Construct the processing exception with a message and a throwable exceptionProcessingEngineException(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
-
ProcessingEngineException
public ProcessingEngineException(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
-
ProcessingEngineException
public ProcessingEngineException(java.lang.Throwable cause)
ProcessingException constructor Construct the processing exception with a throwable exception- Parameters:
cause
- associated cause
-
ProcessingEngineException
public ProcessingEngineException(java.lang.String message)
ProcessingException constructor Construct the processing exception with a message- Parameters:
message
- associated message
-
-