Exception: ActiveCampaign::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/active_campaign/errors.rb

Overview

Base class error for almost all exceptions

Author:

Direct Known Subclasses

ClientError, ConnectionFailed, SSLError, ServerError

Instance Method Summary collapse

Constructor Details

#initialize(response = nil, exception = nil) ⇒ Error

Returns a new instance of Error.



22
23
24
25
# File 'lib/active_campaign/errors.rb', line 22

def initialize(response = nil, exception = nil)
  self.response = response
  @exception    = exception
end

Instance Method Details

#messageObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/active_campaign/errors.rb', line 27

def message
  if response.nil?
    super
  else
    <<~MESSAGE
      STATUS: #{response.status}
      URL: #{env.url}
      REQUEST HEADERS: #{env.request_headers}
      RESPONSE_HEADERS: #{env.response_headers}
      REQUEST_BODY: #{env.request_body}\n\n"
      RESPONSE_BODY: #{response.body}\n\n"
    MESSAGE
  end
end