Exception: Zerobounce::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Zerobounce::Error
- Defined in:
- lib/zerobounce/error.rb
Overview
The base Zerobounce error.
Direct Known Subclasses
ApiError, InternalServerError, MissingParameter, UnknownError
Instance Attribute Summary collapse
-
#env ⇒ Object
readonly
Returns the value of attribute env.
Class Method Summary collapse
-
.from_response(env) ⇒ Error?
Parse the response for errors.
Instance Method Summary collapse
-
#initialize(env = {}) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(env = {}) ⇒ Error
Returns a new instance of Error.
14 15 16 17 |
# File 'lib/zerobounce/error.rb', line 14 def initialize(env={}) @env = env super(env[:body]) end |
Instance Attribute Details
#env ⇒ Object (readonly)
Returns the value of attribute env.
12 13 14 |
# File 'lib/zerobounce/error.rb', line 12 def env @env end |
Class Method Details
.from_response(env) ⇒ Error?
Parse the response for errors.
24 25 26 27 28 29 30 31 32 33 |
# File 'lib/zerobounce/error.rb', line 24 def from_response(env) case env[:status] when 500 parse500(env) when 200 parse200(env) else UnknownError.new(env) end end |