Class KvServiceRegistryException

All Implemented Interfaces:
Serializable

public class KvServiceRegistryException extends UncheckedDeephavenException
An Unchecked Exception that captures failures in ServiceRegistryJetcdProvider methods
See Also:
  • Constructor Details

    • KvServiceRegistryException

      public KvServiceRegistryException()
      Default Constructor
    • KvServiceRegistryException

      public KvServiceRegistryException(@NotNull @NotNull String message)
      Constructor that supports taking a detailed message describing the error. See RuntimeException(String)
      Parameters:
      message - A detailed message describing the error.
    • KvServiceRegistryException

      public KvServiceRegistryException(@Nullable @Nullable Throwable cause)
      Constructor that builds a KvServiceRegistryException using the specified cause. See RuntimeException(Throwable)
      Parameters:
      cause - The passed in cause.
    • KvServiceRegistryException

      public KvServiceRegistryException(@NotNull @NotNull String reason, @Nullable @Nullable Throwable cause)
      Constructor that builds a KvServiceRegistryException using the passed in message and optional cause. See RuntimeException(String, Throwable)
      Parameters:
      reason - The passed in message detailing the error
      cause - Optional cause, null would indicate the error is unknown
    • KvServiceRegistryException

      public KvServiceRegistryException(@NotNull @NotNull String message, @Nullable @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Constructor that builds a KvServiceRegistryException using the passed in message, optional cause, suppression indicator and writable stacktrace flag. See RuntimeException(String, Throwable, boolean, boolean)
      Parameters:
      message - The passed in message detailing the error
      cause - Optional cause, null would indicate the error is unknown
      enableSuppression - Boolean that indicates suppression is enabled or disabled
      writableStackTrace - Boolean that indicates if stacktrace is writable