Package fr.gouv.vitam.common.exception
Class VitamClientInternalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- fr.gouv.vitam.common.exception.VitamException
-
- fr.gouv.vitam.common.exception.VitamClientException
-
- fr.gouv.vitam.common.exception.VitamClientInternalException
-
- All Implemented Interfaces:
java.io.Serializable
public class VitamClientInternalException extends VitamClientException
Internal exception throws by any vitam java client when unknown issue occurs- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VitamClientInternalException(java.lang.String message)
Basic constructor to indicate a simple error message without stacktraceVitamClientInternalException(java.lang.String message, java.lang.Throwable cause)
Constructor used to encapsulate a previously thrown exception but with a custom meaningful messageVitamClientInternalException(java.lang.Throwable cause)
Constructor used to encapsulate a previously thrown exception.
-
Method Summary
-
Methods inherited from class fr.gouv.vitam.common.exception.VitamException
getVitamError, setVitamError
-
-
-
-
Constructor Detail
-
VitamClientInternalException
public VitamClientInternalException(java.lang.String message)
Basic constructor to indicate a simple error message without stacktrace- Parameters:
message
- message to log
-
VitamClientInternalException
public VitamClientInternalException(java.lang.Throwable cause)
Constructor used to encapsulate a previously thrown exception. A generic message is used.- Parameters:
cause
- the originating exception
-
VitamClientInternalException
public VitamClientInternalException(java.lang.String message, java.lang.Throwable cause)
Constructor used to encapsulate a previously thrown exception but with a custom meaningful message- Parameters:
message
- the message to log throw threwcause
- the originating exception
-
-