Class A2AClientException

All Implemented Interfaces:
Serializable

public class A2AClientException extends A2AException
Exception indicating a client-side failure in A2A Protocol operations.

This exception is thrown by A2A client implementations when encountering errors during communication with agents, response validation, or client-side processing.

Common scenarios:

See Also:
  • Constructor Details

    • A2AClientException

      public A2AClientException()
      Constructs a new A2AClientException with no detail message or cause.
    • A2AClientException

      public A2AClientException(String msg)
      Constructs a new A2AClientException with the specified detail message.
      Parameters:
      msg - the detail message
    • A2AClientException

      public A2AClientException(Throwable cause)
      Constructs a new A2AClientException with the specified cause.
      Parameters:
      cause - the cause of this exception
    • A2AClientException

      public A2AClientException(String msg, Throwable cause)
      Constructs a new A2AClientException with the specified detail message and cause.
      Parameters:
      msg - the detail message
      cause - the cause of this exception