Sha256: aab0ed406a171ff2e556411aa80f07a8b603a0aa9beba2c470adac8a41655f38
Contents?: true
Size: 420 Bytes
Versions: 4
Compression:
Stored size: 420 Bytes
Contents
# frozen_string_literal: true module BooticClient class TransportError < StandardError; end class ServerError < TransportError; end class NotFoundError < ServerError; end class AuthorizationError < ServerError; end class UnauthorizedError < AuthorizationError; end class AccessForbiddenError < AuthorizationError; end class ClientError < TransportError; end class InvalidURLError < ClientError; end end
Version data entries
4 entries across 4 versions & 1 rubygems