libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ApiError.cxx
1// C++
2#include <cstring>
3#include <sstream>
4
5// cosmos
6#include <cosmos/error/ApiError.hxx>
7#include <cosmos/utils.hxx>
8
9namespace cosmos {
10
11ApiError::ApiError(const std::string_view prefix) :
12 ApiError{prefix, Errno{errno}} {
13}
14
15ApiError::ApiError(const std::string_view prefix, const Errno err) :
16 CosmosError{"ApiError"},
17 m_errno{err} {
18 if (!prefix.empty()) {
19 m_msg = prefix;
20 m_msg += ": ";
21 }
22}
23
25 std::stringstream ss;
26 ss << m_errno;
27
28 m_msg += ss.str();
29}
30
31std::string ApiError::msg(const Errno err) {
32 char error[512];
33
34 const char *text = ::strerror_r(to_integral(err), &error[0], sizeof(error));
35
36 return text;
37}
38
39} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
void generateMsg() const override
Append type specific error information to m_msg.
Definition ApiError.cxx:24
std::string msg() const
Returns the plain operating system error message.
Definition ApiError.hxx:28
ApiError(const std::string_view prefix)
Stores the current errno code in the exception.
Definition ApiError.cxx:11
Base class for libcosmos exceptions.
std::string m_msg
Runtime generated error message.
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29