| 39 | namespace tiledb::api { |
| 40 | |
| 41 | class CAPIException : public common::StatusException { |
| 42 | public: |
| 43 | explicit CAPIException(const std::string& message) |
| 44 | : StatusException("C API", message) { |
| 45 | } |
| 46 | }; |
| 47 | // Legacy alias to forestall massive sudden code change |
| 48 | using CAPIStatusException = CAPIException; |
| 49 |
no outgoing calls
no test coverage detected