Class GatewayRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hyperledger.fabric.gateway.GatewayRuntimeException
All Implemented Interfaces:
Serializable

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

    • GatewayRuntimeException

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

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

      public GatewayRuntimeException(String message, 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.