Exception: Legate::Auth::TokenRevocationError
- Defined in:
- lib/legate/auth/error.rb
Overview
Raised when a token revocation operation fails
Instance Method Summary collapse
-
#initialize(message = nil, provider_error = nil, cause = nil) ⇒ TokenRevocationError
constructor
A new instance of TokenRevocationError.
Constructor Details
#initialize(message = nil, provider_error = nil, cause = nil) ⇒ TokenRevocationError
Returns a new instance of TokenRevocationError.
53 54 55 56 57 |
# File 'lib/legate/auth/error.rb', line 53 def initialize( = nil, provider_error = nil, cause = nil) = || 'Token revocation failed' = "#{}: #{provider_error}" if provider_error super(, cause) end |