| 32 | { |
| 33 | public: |
| 34 | explicit ToolRuntimeError(const QString &message) |
| 35 | : ToolException(message) |
| 36 | {} |
| 37 | |
| 38 | void raise() const override { throw *this; } |
| 39 | ToolRuntimeError *clone() const override { return new ToolRuntimeError(*this); } |
nothing calls this directly
no outgoing calls
no test coverage detected