| 17 | namespace pmon::util |
| 18 | { |
| 19 | Exception::Exception(std::string msg) noexcept : note_{ std::move(msg) } {} |
| 20 | void Exception::CaptureStackTrace() |
| 21 | { |
| 22 | pTrace_ = log::StackTrace::Here(PM_THROW_SKIP); |
nothing calls this directly
no outgoing calls
no test coverage detected