Class: A2A::AuthenticatedExtendedCardNotConfiguredError
- Inherits:
-
JSONRPC::Error
- Object
- JSONRPC::Error
- A2A::AuthenticatedExtendedCardNotConfiguredError
- Defined in:
- lib/a2a/types/authenticated_extended_card_not_configured_error.rb
Overview
Error for missing authenticated extended card configuration (-32007)
Raised when the agent does not have an Authenticated Extended Card configured.
Instance Method Summary collapse
-
#initialize(message = 'Authenticated Extended Card not configured.', data: nil, request_id: nil) ⇒ AuthenticatedExtendedCardNotConfiguredError
constructor
Creates a new Authenticated Extended Card Not Configured Error with code -32007.
Constructor Details
#initialize(message = 'Authenticated Extended Card not configured.', data: nil, request_id: nil) ⇒ AuthenticatedExtendedCardNotConfiguredError
Creates a new Authenticated Extended Card Not Configured Error with code -32007
30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/a2a/types/authenticated_extended_card_not_configured_error.rb', line 30 def initialize( = 'Authenticated Extended Card not configured.', data: nil, request_id: nil ) super( , code: ErrorCodes::AUTHENTICATED_EXTENDED_CARD_NOT_CONFIGURED, data:, request_id: ) end |