MCPcopy Create free account
hub / github.com/Abc-Arbitrage/Disruptor-cpp / ExceptionBase

Method ExceptionBase

Disruptor/ExceptionBase.h:61–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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(),

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected