Package fr.gouv.vitam.common.exception
Class NoWritingPermissionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
fr.gouv.vitam.common.exception.VitamException
fr.gouv.vitam.common.exception.NoWritingPermissionException
- All Implemented Interfaces:
Serializable
Exception when has no writing permission
- See Also:
-
Constructor Summary
ConstructorDescriptionNoWritingPermissionException
(String message) Basic constructor to indicate a simple error message without stacktraceNoWritingPermissionException
(String message, Throwable throwable) Constructor used to encapsulate a previously thrown exception with but with a custom meaningful messageNoWritingPermissionException
(Throwable throwable) Constructor used to encapsulate a previously thrown exception. -
Method Summary
Methods inherited from class fr.gouv.vitam.common.exception.VitamException
getVitamError, setVitamError
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoWritingPermissionException
Basic constructor to indicate a simple error message without stacktrace- Parameters:
message
- message to log
-
NoWritingPermissionException
Constructor used to encapsulate a previously thrown exception. A generic message is used.- Parameters:
throwable
- the originating exception
-
NoWritingPermissionException
Constructor used to encapsulate a previously thrown exception with but with a custom meaningful message- Parameters:
message
- the message to log throw threwthrowable
- the originating exception
-