Class for query status exceptions. */
| 72 | |
| 73 | /** Class for query status exceptions. */ |
| 74 | class SubarrayException : public StatusException { |
| 75 | public: |
| 76 | explicit SubarrayException(const std::string& msg) |
| 77 | : StatusException("Subarray", msg) { |
| 78 | } |
| 79 | }; |
| 80 | |
| 81 | /* ****************************** */ |
| 82 | /* CONSTRUCTORS & DESTRUCTORS */ |
no outgoing calls
no test coverage detected