libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
CosmosError.cxx
1// C++
2#include <sstream>
3
4// cosmos
5#include <cosmos/error/CosmosError.hxx>
6
7namespace cosmos {
8
9const char* CosmosError::what() const throw() {
10 if (!m_msg_generated) {
11 auto orig = m_msg;
12 std::stringstream ss;
13 ss << m_file << ":" << m_line << " [" << m_func << "]: "
14 << m_error_class << ": ";
15 m_msg = ss.str();
16 m_msg += orig;
18 m_msg_generated = true;
19 }
20
21 return m_msg.c_str();
22}
23
24std::string CosmosError::shortWhat() const {
25 const std::string_view what{this->what()};
26
27 const auto start = what.find(m_error_class) + m_error_class.size() + 2;
28
29 return std::string{what.substr(start)};
30}
31
32} // end ns
std::string shortWhat() const
Returns a shorter description of the error without verbose context.
const char * what() const override
Implementation of the std::exception interface.
bool m_msg_generated
Whether m_msg has been assembled yet.
std::string m_msg
Runtime generated error message.
std::string_view m_error_class
Descriptive, unique error class label.
virtual void generateMsg() const
Append type specific error information to m_msg.