| 75 | { |
| 76 | public: |
| 77 | FileError(const QString& _msg) : Exception(_msg) {} |
| 78 | |
| 79 | void raise() const override { throw *this; } |
| 80 | Exception *clone() const override { return new FileError(*this); } |
nothing calls this directly
no outgoing calls
no test coverage detected