| 30 | { |
| 31 | public: |
| 32 | ProcessError(const QString& _msg) : Exception(_msg) {} |
| 33 | |
| 34 | void raise() const override { throw *this; } |
| 35 | Exception *clone() const override { return new ProcessError(*this); } |
nothing calls this directly
no outgoing calls
no test coverage detected