Exception: OpenID::OpenIDError
- Inherits:
-
StandardError
- Object
- StandardError
- OpenID::OpenIDError
- 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
Direct Known Subclasses
DiscoveryFailure, FetchingError, HTTPStatusError, KVPostNetworkError, ProtocolError, ServerError
Instance Method Summary collapse
-
#initialize(*msgs) ⇒ OpenIDError
constructor
A new instance of OpenIDError.
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 |