Package fr.gouv.vitam.common.exception
Class VitamApplicationServerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- fr.gouv.vitam.common.exception.VitamException
-
- fr.gouv.vitam.common.exception.VitamApplicationServerException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
VitamApplicationServerDisconnectException
public class VitamApplicationServerException extends VitamException
// * This exception must be used when an error occured while creating, configuring or starting aVitamServer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VitamApplicationServerException(java.lang.String message)
Basic constructor to indicate a simple error message without stacktraceVitamApplicationServerException(java.lang.String message, java.lang.Throwable throwable)
Constructor used to encapsulate a previously thrown exception with but with a custom meaningful messageVitamApplicationServerException(java.lang.Throwable throwable)
Constructor used to encapsulate a previously thrown exception.
-
Method Summary
-
Methods inherited from class fr.gouv.vitam.common.exception.VitamException
getVitamError, setVitamError
-
-
-
-
Constructor Detail
-
VitamApplicationServerException
public VitamApplicationServerException(java.lang.String message)
Basic constructor to indicate a simple error message without stacktrace- Parameters:
message
- message to log
-
VitamApplicationServerException
public VitamApplicationServerException(java.lang.Throwable throwable)
Constructor used to encapsulate a previously thrown exception. A generic message is used.- Parameters:
throwable
- the originating exception
-
VitamApplicationServerException
public VitamApplicationServerException(java.lang.String message, java.lang.Throwable throwable)
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
-
-