Exception: OpenID::OpenIDError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/openid/util.rb

Overview

Exceptions that are raised by the library are subclasses of this exception type, so if you want to catch all exceptions raised by the library, you can catch OpenIDError

Instance Method Summary collapse

Constructor Details

#initialize(*msgs) ⇒ OpenIDError

Returns a new instance of OpenIDError.



16
17
18
# File 'lib/openid/util.rb', line 16

def initialize(*msgs)
  super(msgs.join(', '))
end