Class GatewayRuntimeException

  • All Implemented Interfaces:
    java.io.Serializable

    public class GatewayRuntimeException
    extends java.lang.RuntimeException
    Runtime exception for gateway classes. Typically indicates misconfiguration or misuse of the API.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      GatewayRuntimeException​(java.lang.String message)
      Constructs a new exception with the specified detail message.
      GatewayRuntimeException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      GatewayRuntimeException​(java.lang.Throwable cause)
      Constructs a new exception with the specified cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • GatewayRuntimeException

        public GatewayRuntimeException​(java.lang.String message)
        Constructs a new exception with the specified detail message. The cause is not initialized.
        Parameters:
        message - the detail message.
      • GatewayRuntimeException

        public GatewayRuntimeException​(java.lang.Throwable cause)
        Constructs a new exception with the specified cause. The detail message is not initialized.
        Parameters:
        cause - the cause.
      • GatewayRuntimeException

        public GatewayRuntimeException​(java.lang.String message,
                                       java.lang.Throwable cause)
        Constructs a new exception with the specified detail message and cause. The payload is not initialized.
        Parameters:
        message - the detail message.
        cause - the cause.