| 59 | { |
| 60 | public: |
| 61 | explicit ExceptionBase(std::string message = std::string(), |
| 62 | std::string function = std::string(), |
| 63 | std::string file = std::string(), |
| 64 | int line = -1) |
| 65 | : m_message(std::move(message)) |
| 66 | , m_innerException(emptyException()) |
| 67 | , m_function(std::move(function)) |
| 68 | , m_file(std::move(file)) |
| 69 | , m_line(line) |
| 70 | , m_wholeMessage() |
| 71 | { |
| 72 | } |
| 73 | |
| 74 | explicit ExceptionBase(const std::exception& innerException, |
| 75 | std::string function = std::string(), |
nothing calls this directly
no outgoing calls
no test coverage detected