Class IdUClientException

All Implemented Interfaces:
com.io7m.seltzer.api.SStructuredErrorExceptionType<IdErrorCode>, com.io7m.seltzer.api.SStructuredErrorType<IdErrorCode>, Serializable

public final class IdUClientException extends IdException
The type of client exceptions.
See Also:
  • Constructor Details

    • IdUClientException

      public IdUClientException(String message, IdErrorCode inErrorCode, Map<String,String> inAttributes, Optional<String> inRemediatingAction, Optional<UUID> inRequestId)
      Construct an exception.
      Parameters:
      message - The message
      inErrorCode - The error code
      inAttributes - The error attributes
      inRemediatingAction - The remediating action, if any
      inRequestId - The request ID
    • IdUClientException

      public IdUClientException(String message, Throwable cause, IdErrorCode inErrorCode, Map<String,String> inAttributes, Optional<String> inRemediatingAction, Optional<UUID> inRequestId)
      Construct an exception.
      Parameters:
      message - The message
      cause - The cause
      inErrorCode - The error code
      inAttributes - The error attributes
      inRemediatingAction - The remediating action, if any
      inRequestId - The request ID
  • Method Details

    • requestId

      public Optional<UUID> requestId()
      Returns:
      The ID associated with the request, if the server returned one
    • ofError

      public static IdUClientException ofError(IdUResponseError error)
      Transform an error response to an exception.
      Parameters:
      error - The error
      Returns:
      The exception
    • ofException

      public static IdUClientException ofException(Throwable ex)
      Construct an exception from an existing exception.
      Parameters:
      ex - The cause
      Returns:
      The new exception