Exception indicating the requested operation does not match array schema **/
| 58 | |
| 59 | /** Exception indicating the requested operation does not match array schema **/ |
| 60 | struct SchemaMismatch : public TileDBError { |
| 61 | SchemaMismatch(const std::string& msg) |
| 62 | : TileDBError(msg) { |
| 63 | } |
| 64 | }; |
| 65 | |
| 66 | /** Error related to attributes **/ |
| 67 | struct AttributeError : public TileDBError { |