Class PluginRuntimeException

All Implemented Interfaces:
Serializable

public class PluginRuntimeException extends RuntimeException
See Also:
  • Constructor Details

    • PluginRuntimeException

      public PluginRuntimeException<wbr>(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<wbr>(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<wbr>(String message, 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.
      Parameters:
      message -
      e -