Exception: Kessel::Auth::OAuthAuthenticationError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/kessel/auth.rb

Overview

Exception raised when OAuth authentication fails.

Since:

  • 1.0.0

Instance Method Summary collapse

Constructor Details

#initialize(message = 'OAuth authentication failed') ⇒ OAuthAuthenticationError

Creates a new OAuth authentication error.

Parameters:

  • message (String) (defaults to: 'OAuth authentication failed')

    Error message describing the authentication failure

Since:

  • 1.0.0



41
42
43
# File 'lib/kessel/auth.rb', line 41

def initialize(message = 'OAuth authentication failed')
  super
end