| 39 | { |
| 40 | public: |
| 41 | ProjectError(const QString& _msg) : Exception(_msg) {} |
| 42 | |
| 43 | void raise() const override { throw *this; } |
| 44 | Exception *clone() const override { return new ProjectError(*this); } |
nothing calls this directly
no outgoing calls
no test coverage detected