Exception: Hackeroo::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/hackeroo/error.rb,
lib/hackeroo/error/forbidden.rb,
lib/hackeroo/error/not_found.rb,
lib/hackeroo/error/bad_gateway.rb,
lib/hackeroo/error/bad_request.rb,
lib/hackeroo/error/client_error.rb,
lib/hackeroo/error/decode_error.rb,
lib/hackeroo/error/server_error.rb,
lib/hackeroo/error/unauthorized.rb,
lib/hackeroo/error/not_acceptable.rb,
lib/hackeroo/error/gateway_timeout.rb,
lib/hackeroo/error/too_many_requests.rb,
lib/hackeroo/error/configuration_error.rb,
lib/hackeroo/error/service_unavailable.rb,
lib/hackeroo/error/unprocessable_entity.rb,
lib/hackeroo/error/internal_server_error.rb,
lib/hackeroo/error/identity_map_key_error.rb

Overview

Custom error class for rescuing from all Hackeroo errors

Direct Known Subclasses

ClientError, DecodeError, ServerError

Defined Under Namespace

Classes: BadGateway, BadRequest, ClientError, ConfigurationError, DecodeError, Forbidden, GatewayTimeout, IdentityMapKeyError, InternalServerError, NotAcceptable, NotFound, ServerError, ServiceUnavailable, TooManyRequests, Unauthorized, UnprocessableEntity

Constant Summary collapse

EnhanceYourCalm =
TooManyRequests
RateLimited =
TooManyRequests

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(exception = $!, response_headers = {}) ⇒ Hackeroo::Error

Initializes a new Error object

Parameters:

  • exception (Exception, String) (defaults to: $!)
  • response_headers (Hash) (defaults to: {})


21
22
23
24
25
# File 'lib/hackeroo/error.rb', line 21

def initialize(exception=$!, response_headers={})
  @rate_limit = Hackeroo::RateLimit.new(response_headers)
  @wrapped_exception = exception
  exception.respond_to?(:backtrace) ? super(exception.message) : super(exception.to_s)
end

Instance Attribute Details

#rate_limitObject (readonly)

Returns the value of attribute rate_limit.



4
5
6
# File 'lib/hackeroo/error.rb', line 4

def rate_limit
  @rate_limit
end

#wrapped_exceptionObject (readonly)

Returns the value of attribute wrapped_exception.



4
5
6
# File 'lib/hackeroo/error.rb', line 4

def wrapped_exception
  @wrapped_exception
end

Class Method Details

.descendantsArray

Returns:

  • (Array)


12
13
14
# File 'lib/hackeroo/error.rb', line 12

def self.descendants
  ObjectSpace.each_object(::Class).select{|klass| klass < self}
end

.errorsHash

Returns:

  • (Hash)


7
8
9
# File 'lib/hackeroo/error.rb', line 7

def self.errors
  @errors ||= Hash[descendants.map{|klass| [klass.const_get(:HTTP_STATUS_CODE), klass]}]
end

Instance Method Details

#backtraceObject



27
28
29
# File 'lib/hackeroo/error.rb', line 27

def backtrace
  @wrapped_exception.respond_to?(:backtrace) ? @wrapped_exception.backtrace : super
end