RaMin0/london_cab-auth

View on GitHub
lib/london_cab_auth/api/error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module LondonCab
  module Auth
    module Api
      class Error < ::Faraday::Error
        attr_reader :response

        def initialize(message, response = nil)
          @response = response
          super(message)
        end
      end
    end
  end
end