Package com.axemble.vdoc.sdk.exceptions
Class SDKFatalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.axemble.vdoc.core.exceptions.VDocException
com.axemble.vdoc.core.exceptions.FatalException
com.axemble.vdoc.sdk.exceptions.SDKFatalException
- All Implemented Interfaces:
- Serializable
public class SDKFatalException
extends com.axemble.vdoc.core.exceptions.FatalException
SDKFatalException and its subclasses are unchecked
 exceptions.
 Throwing a SDKFatalException exception will loose the end user context. The end user can retrieve exception stack trace.
- Author:
- vlygeros
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a new runtime exception.SDKFatalException(String message, String... messageParameters) Constructs a new runtime exception with the specified detail message.SDKFatalException(String message, Throwable cause, String... messageParameters) Constructs a new runtime exception with the specified detail message and cause.SDKFatalException(Throwable cause) Constructs a new runtime exception with cause.
- 
Method SummaryMethods inherited from class com.axemble.vdoc.core.exceptions.VDocExceptionfindException, getLocalizedMessage, getLocalizedMessage, getMessageParameters, getThrowableMessage, isLocalized, isLogAsError, setLocalizedMessage, setLogAsError, toStringMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
- 
Constructor Details- 
SDKFatalExceptionpublic SDKFatalException()Constructs a new runtime exception.
- 
SDKFatalExceptionConstructs a new runtime exception with the specified detail message and cause.- Parameters:
- message- the detail message (which is saved for later retrieval by the- Throwable.getMessage()method).
- cause- the cause (which is saved for later retrieval by the- Throwable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
- messageParameters-
 
- 
SDKFatalExceptionConstructs a new runtime exception with the specified detail message.- Parameters:
- message- the detail message (which is saved for later retrieval by the- Throwable.getMessage()method).
- messageParameters-
 
- 
SDKFatalExceptionConstructs a new runtime exception with cause.- Parameters:
- cause- the cause (which is saved for later retrieval by the- Throwable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
 
 
-