| 194 | /// Return an error status for out-of-memory conditions |
| 195 | template <typename... Args> |
| 196 | static Status OutOfMemory(Args&&... args) { |
| 197 | return Status::FromArgs(StatusCode::OutOfMemory, std::forward<Args>(args)...); |
| 198 | } |
| 199 | |
| 200 | /// Return an error status for failed key lookups (e.g. column name in a table) |
| 201 | template <typename... Args> |