| 2062 | // |
| 2063 | |
| 2064 | ServerConfigReadException::ServerConfigReadException(const ConfigReadContext &context, const std::string &error) |
| 2065 | : m_error(deskflow::string::sprintf("line %d: %s", context.getLineNumber(), error.c_str())) |
| 2066 | { |
| 2067 | // do nothing |
| 2068 | } |
| 2069 | |
| 2070 | ServerConfigReadException::ServerConfigReadException( |
| 2071 | const ConfigReadContext &context, const char *errorFmt, const std::string &arg |
nothing calls this directly
no test coverage detected