Class: A2A::PushNotificationNotSupportedError
- Inherits:
-
JSONRPCError
- Object
- Dry::Struct
- ProtocolStruct
- JSONRPCError
- A2A::PushNotificationNotSupportedError
- Defined in:
- lib/a2a/types/push_notification_not_supported_error.rb
Overview
Error for push notification not supported
Instance Method Summary collapse
-
#code ⇒ Integer
Error code (-32003).
-
#data ⇒ nil
No additional data.
-
#message ⇒ String
Error message.
Methods included from Extensions::CaseTransformation
Instance Method Details
#code ⇒ Integer
Returns Error code (-32003).
7 |
# File 'lib/a2a/types/push_notification_not_supported_error.rb', line 7 attribute :code, Types::Integer.constant(ErrorCodes::PUSH_NOTIFICATION_NOT_SUPPORTED) |
#data ⇒ nil
Returns No additional data.
13 |
# File 'lib/a2a/types/push_notification_not_supported_error.rb', line 13 attribute? :data, Types::Nil.constant(nil) |
#message ⇒ String
Returns Error message.
10 |
# File 'lib/a2a/types/push_notification_not_supported_error.rb', line 10 attribute :message, Types::String.constant('Push Notification is not supported') |