Exception: BetterAuth::SSO::OIDC::DiscoveryError
- Inherits:
-
StandardError
- Object
- StandardError
- BetterAuth::SSO::OIDC::DiscoveryError
- Defined in:
- lib/better_auth/sso/oidc/errors.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#details ⇒ Object
readonly
Returns the value of attribute details.
Instance Method Summary collapse
-
#initialize(code, message, details: {}) ⇒ DiscoveryError
constructor
A new instance of DiscoveryError.
Constructor Details
#initialize(code, message, details: {}) ⇒ DiscoveryError
Returns a new instance of DiscoveryError.
9 10 11 12 13 |
# File 'lib/better_auth/sso/oidc/errors.rb', line 9 def initialize(code, , details: {}) @code = code @details = details super() end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
7 8 9 |
# File 'lib/better_auth/sso/oidc/errors.rb', line 7 def code @code end |
#details ⇒ Object (readonly)
Returns the value of attribute details.
7 8 9 |
# File 'lib/better_auth/sso/oidc/errors.rb', line 7 def details @details end |