Sha256: 87fe1cf496149aa9608eef5752877b1ea60558b8ddefa59438e7f28abec5cb49
Contents?: true
Size: 684 Bytes
Versions: 8
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true module Zoom class Error < StandardError attr_reader :error_hash def initialize(msg, error_hash={}) @error_hash = error_hash super(msg) end end class GatewayTimeout < Error; end class NotImplemented < Error; end class ParameterMissing < Error; end class ParameterNotPermitted < Error; end class ParameterValueNotPermitted < Error; end class AuthenticationError < Error; end class BadRequest < Error; end class Unauthorized < Error; end class Forbidden < Error; end class NotFound < Error; end class Conflict < Error; end class TooManyRequests < Error; end class InternalServerError < Error; end end
Version data entries
8 entries across 8 versions & 1 rubygems