public PluginRuntimeException(java.lang.Throwable e)
Constructor with an exception. This will be used to convert the exception
to PluginRuntimeException. If the exception need to be handled in downstream
specify an error code using.
public void setErrorCode(int errorCode) method or
overloaded constructor that takes error code.
Parameters:
e -
PluginRuntimeException
public PluginRuntimeException(java.lang.String message)
Constructor to create an exception with a message ID or message. If the
exception need to be handled in downstream specify an error code using.
public void setErrorCode(int errorCode) method or
overloaded constructor that takes error code.
Parameters:
message -
PluginRuntimeException
public PluginRuntimeException(java.lang.String message,
java.lang.Exception e)
Constructor to create an exception with a message ID or message and an
exception. If the exception need to be handled in downstream specify an
error code using. public void setErrorCode(int errorCode)
method or overloaded constructor that takes error code.