Class ExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.priint.pubserver.exception.PubServerException
com.priint.pubserver.testservice.exception.ExecutionException
- All Implemented Interfaces:
Serializable
ExecutionException
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionExecutionException(String message, Throwable cause) ConstructorExecutionException(String message, Throwable cause, int errorCode, Object caller) Constructor -
Method Summary
Methods inherited from class com.priint.pubserver.exception.PubServerException
getCode, getErrorCodeInfo, getErrorsStack, getExceptionsStack, getFormattedMessage, getFormattedMessageTrace, getMessageStack, getModule, getParameters, retrieveErrorCodeInfo, retrieveErrorsStackMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecutionException
Constructor- Parameters:
message- short textual error message, possibly containing some identifying object datacause- (optional) original exception leading to this one ornullerrorCode- Global unique code error number for every exception in our systemcaller- Object that creates this exception. Object class name will be used as name of the module that created this exception. If caller is of type String the string itself will be used as module name (long strings might be truncated).
-
ExecutionException
Constructor- Parameters:
message- short textual error message, possibly containing some identifying object datacause- (optional) original exception leading to this one ornull
-