class ESI::Errors::ClientError

Base class for ESI client errors.

Attributes

response[R]

Public Class Methods

new(msg, response:) click to toggle source
Calls superclass method
# File lib/esi/errors.rb, line 14
def initialize(msg, response:)
  super(msg)

  @response = response
end