@@ -40,12 +40,6 @@ class TaskNotCancelableError(A2AError):
4040 message = 'Task cannot be canceled'
4141
4242
43- class PushNotificationConfigNotFoundError (A2AError ):
44- """Exception raised when a push notification configuration is not found."""
45-
46- message = 'Push notification config not found'
47-
48-
4943class PushNotificationNotSupportedError (A2AError ):
5044 """Exception raised when push notifications are not supported."""
5145
@@ -145,7 +139,6 @@ class VersionNotSupportedError(A2AError):
145139 ExtendedAgentCardNotConfiguredError : - 32007 ,
146140 ExtensionSupportRequiredError : - 32008 ,
147141 VersionNotSupportedError : - 32009 ,
148- PushNotificationConfigNotFoundError : - 32010 ,
149142 InvalidParamsError : - 32602 ,
150143 InvalidRequestError : - 32600 ,
151144 MethodNotFoundError : - 32601 ,
@@ -158,9 +151,6 @@ class VersionNotSupportedError(A2AError):
158151 TaskNotCancelableError : RestErrorMap (
159152 409 , 'FAILED_PRECONDITION' , 'TASK_NOT_CANCELABLE'
160153 ),
161- PushNotificationConfigNotFoundError : RestErrorMap (
162- 404 , 'NOT_FOUND' , 'PUSH_NOTIFICATION_CONFIG_NOT_FOUND'
163- ),
164154 PushNotificationNotSupportedError : RestErrorMap (
165155 400 ,
166156 'UNIMPLEMENTED' ,
0 commit comments