| 70 | namespace tiledb::sm { |
| 71 | |
| 72 | class ArrayException : public StatusException { |
| 73 | public: |
| 74 | explicit ArrayException(const std::string& message) |
| 75 | : StatusException("Array", message) { |
| 76 | } |
| 77 | }; |
| 78 | |
| 79 | void ensure_supported_schema_version_for_read(format_version_t version); |
| 80 |
no outgoing calls
no test coverage detected