| 88 | } |
| 89 | |
| 90 | const std::string error_message() { |
| 91 | const char* msg = nullptr; |
| 92 | tiledb_error_message(error_.get(), &msg); |
| 93 | if (msg == nullptr) |
| 94 | return std::string(); |
| 95 | else |
| 96 | return std::string(msg); |
| 97 | } |
| 98 | |
| 99 | private: |
| 100 | /* ********************************* */ |
no test coverage detected