| 200 | /// Return an error status for failed key lookups (e.g. column name in a table) |
| 201 | template <typename... Args> |
| 202 | static Status KeyError(Args&&... args) { |
| 203 | return Status::FromArgs(StatusCode::KeyError, std::forward<Args>(args)...); |
| 204 | } |
| 205 | |
| 206 | /// Return an error status for type errors (such as mismatching data types) |
| 207 | template <typename... Args> |