Exception: OpenID::DiscoveryFailure
- Inherits:
-
OpenIDError
- Object
- StandardError
- OpenIDError
- OpenID::DiscoveryFailure
- Defined in:
- lib/openid/yadis/discovery.rb
Overview
Raised when a error occurs in the discovery process
Instance Attribute Summary collapse
-
#http_response ⇒ Object
Returns the value of attribute http_response.
-
#identity_url ⇒ Object
Returns the value of attribute identity_url.
Instance Method Summary collapse
-
#initialize(message, http_response) ⇒ DiscoveryFailure
constructor
A new instance of DiscoveryFailure.
Constructor Details
#initialize(message, http_response) ⇒ DiscoveryFailure
Returns a new instance of DiscoveryFailure.
13 14 15 16 17 |
# File 'lib/openid/yadis/discovery.rb', line 13 def initialize(, http_response) super() @identity_url = nil @http_response = http_response end |
Instance Attribute Details
#http_response ⇒ Object
Returns the value of attribute http_response.
11 12 13 |
# File 'lib/openid/yadis/discovery.rb', line 11 def http_response @http_response end |
#identity_url ⇒ Object
Returns the value of attribute identity_url.
11 12 13 |
# File 'lib/openid/yadis/discovery.rb', line 11 def identity_url @identity_url end |