Exception: ACTV::Error::ClientError

Inherits:
ACTV::Error
  • Object
show all
Defined in:
lib/actv/error/client_error.rb

Overview

Raised when Active returns a 4xx HTTP status code or there’s an error in Faraday

Instance Attribute Summary

Attributes inherited from ACTV::Error

#wrapped_exception

Class Method Summary collapse

Methods inherited from ACTV::Error

#backtrace, descendants, errors, #initialize

Constructor Details

This class inherits a constructor from ACTV::Error

Class Method Details

.from_response_body(body) ⇒ ACTV::Error

Create a new error from an HTTP environment

Parameters:

  • body (Hash)

Returns:



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

def self.from_response_body(body)
  new(parse_error(body))
end