| 84 | { |
| 85 | public: |
| 86 | ServerError(const QString& _msg) : Exception(_msg) {} |
| 87 | |
| 88 | void raise() const override { throw *this; } |
| 89 | Exception *clone() const override { return new ServerError(*this); } |
nothing calls this directly
no outgoing calls
no test coverage detected