MCPcopy Create free account
hub / github.com/apache/arrow / IsUnknownError

Function IsUnknownError

cpp/src/arrow/status.h:307–307  ·  view source on GitHub ↗

Return true iff the status indicates an unknown error.

Source from the content-addressed store, hash-verified

305 constexpr bool IsTypeError() const { return code() == StatusCode::TypeError; }
306 /// Return true iff the status indicates an unknown error.
307 constexpr bool IsUnknownError() const { return code() == StatusCode::UnknownError; }
308 /// Return true iff the status indicates an unimplemented operation.
309 constexpr bool IsNotImplemented() const { return code() == StatusCode::NotImplemented; }
310 /// Return true iff the status indicates a (de)serialization failure

Callers

nothing calls this directly

Calls 1

codeFunction · 0.70

Tested by

no test coverage detected