Class: A2A::TaskNotFoundError

Inherits:
JSONRPCError
  • Object
show all
Defined in:
lib/a2a/types/task_not_found_error.rb

Overview

Error for task not found

Instance Method Summary collapse

Methods included from Extensions::CaseTransformation

#camelize, included, #to_json

Instance Method Details

#codeInteger

Returns Error code (-32001).

Returns:

  • (Integer)

    Error code (-32001)



7
# File 'lib/a2a/types/task_not_found_error.rb', line 7

attribute :code, Types::Integer.constant(ErrorCodes::TASK_NOT_FOUND)

#datanil

Returns No additional data.

Returns:

  • (nil)

    No additional data



13
# File 'lib/a2a/types/task_not_found_error.rb', line 13

attribute? :data, Types::Nil.constant(nil)

#messageString

Returns Error message.

Returns:

  • (String)

    Error message



10
# File 'lib/a2a/types/task_not_found_error.rb', line 10

attribute :message, Types::String.constant('Task not found')