| 105 | PermissionDeniedError(const std::string& error) : std::exception(), m_error(error) {} |
| 106 | #ifdef __GNUC__ |
| 107 | virtual const char* what() const noexcept |
| 108 | { |
| 109 | return m_error.c_str(); |
| 110 | } |
| 111 | #else |
| 112 | virtual const char* what() const |
| 113 | { |
nothing calls this directly
no outgoing calls
no test coverage detected