Exception: KeycloakSdk::AuthError
- Defined in:
- lib/keycloak_sdk/errors.rb
Overview
인증/토큰 발급 실패(OAuth 오류 코드 보존).
Instance Attribute Summary collapse
-
#oauth_error ⇒ Object
readonly
Returns the value of attribute oauth_error.
Instance Method Summary collapse
-
#initialize(message = nil, oauth_error: nil) ⇒ AuthError
constructor
A new instance of AuthError.
Constructor Details
#initialize(message = nil, oauth_error: nil) ⇒ AuthError
Returns a new instance of AuthError.
14 15 16 17 |
# File 'lib/keycloak_sdk/errors.rb', line 14 def initialize( = nil, oauth_error: nil) super() @oauth_error = oauth_error end |
Instance Attribute Details
#oauth_error ⇒ Object (readonly)
Returns the value of attribute oauth_error.
12 13 14 |
# File 'lib/keycloak_sdk/errors.rb', line 12 def oauth_error @oauth_error end |