Exception: Keycardai::OAuth::WorkloadIdentityRuntimeError
- Defined in:
- lib/keycardai/oauth/errors.rb
Overview
A workload-identity source failed at request time: file unreadable or empty, endpoint unreachable, non-200 response, empty token. Carries the source identifier and preserves the underlying cause.
Instance Attribute Summary collapse
- #source ⇒ String readonly
Instance Method Summary collapse
-
#initialize(message, source:) ⇒ WorkloadIdentityRuntimeError
constructor
A new instance of WorkloadIdentityRuntimeError.
Constructor Details
#initialize(message, source:) ⇒ WorkloadIdentityRuntimeError
Returns a new instance of WorkloadIdentityRuntimeError.
134 135 136 137 |
# File 'lib/keycardai/oauth/errors.rb', line 134 def initialize(, source:) super() @source = source end |
Instance Attribute Details
#source ⇒ String (readonly)
132 133 134 |
# File 'lib/keycardai/oauth/errors.rb', line 132 def source @source end |