Class: PayjpMock::Response::Error::AuthenticationError

Inherits:
Base
  • Object
show all
Defined in:
lib/payjp_mock/response/error/authentication_error.rb

Instance Attribute Summary

Attributes inherited from Base

#attributes

Instance Method Summary collapse

Methods inherited from Base

#body, #initialize

Methods inherited from Base

#body, #exception, #to_h

Constructor Details

This class inherits a constructor from PayjpMock::Response::Error::Base

Instance Method Details

#default_attributesObject



3
4
5
6
7
8
9
# File 'lib/payjp_mock/response/error/authentication_error.rb', line 3

def default_attributes
  {
    message: 'Invalid API Key: sk_test_********************xxxx',
    status:  status,
    type:    'auth_error'
  }
end

#statusObject



11
12
13
# File 'lib/payjp_mock/response/error/authentication_error.rb', line 11

def status
  401
end