class Tikkie::Api::V1::AuthenticationException

Exception when the authentication fails.

Attributes

body[R]
response[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method
# File lib/tikkie/api/v1/exception.rb, line 14
def initialize(response)
  @response = response
  @body = response.body

  message = "Authentication failure at Tikkie"
  super(message)
end