pyarrow.flight.FlightError#

exceptionpyarrow.flight.FlightError(message='',extra_info=b'')#

Bases:Exception

The base class for Flight-specific errors.

A server may raise this class or one of its subclasses to providea more detailed error to clients.

Parameters:
messagestr, optional

The error message.

extra_infobytes, optional

Extra binary error details that were provided by theserver/will be sent to the client.

Attributes:
extra_infobytes

Extra binary error details that were provided by theserver/will be sent to the client.

add_note(object,/)#

Exception.add_note(note) –add a note to the exception

args#
with_traceback(object,/)#

Exception.with_traceback(tb) –set self.__traceback__ to tb and return self.