Class PluginRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.priint.pubserver.plugin.exception.PluginRuntimeException
- All Implemented Interfaces:
Serializable
Thrown if a plug-in catches a runtime exception and decides to re-throw it as checked exception to the caller .
- Since:
- 4.0.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPluginRuntimeException(String caller, String message, Throwable cause) Create a basic publishing server exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PluginRuntimeException
Create a basic publishing server exception.- Parameters:
caller- 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).message- short textual error message, possibly containing some identifying object datacause- (optional) original exception leading to this one ornull
-