Exception: LcpRuby::Authentication::UnknownProvider

Inherits:
StandardError
  • Object
show all
Defined in:
lib/lcp_ruby/authentication/errors.rb

Overview

Raised when ProviderRegistry.find is called with a name that has no matching entry.

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ UnknownProvider

Returns a new instance of UnknownProvider.



18
19
20
# File 'lib/lcp_ruby/authentication/errors.rb', line 18

def initialize(name)
  super("unknown provider: #{name.inspect}")
end