libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ApiError.hxx
1#pragma once
2
3// C++
4#include <string>
5
6// cosmos
7#include <cosmos/error/CosmosError.hxx>
8#include <cosmos/error/errno.hxx>
9
10namespace cosmos {
11
13
17class COSMOS_API ApiError :
18 public CosmosError {
19public: // functions
20
22 explicit ApiError(const std::string_view prefix);
23
25 ApiError(const std::string_view prefix, const Errno err);
26
28 std::string msg() const { return msg(m_errno); }
29
31 static std::string msg(const Errno err);
32
34 auto errnum() const { return m_errno; }
35
37
38protected: // functions
39
40 void generateMsg() const override;
41
42protected: // data
43
44 Errno m_errno = Errno::NO_ERROR;
45};
46
47} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
auto errnum() const
Returns the plain errno stored in the exception.
Definition ApiError.hxx:34
std::string msg() const
Returns the plain operating system error message.
Definition ApiError.hxx:28
Base class for libcosmos exceptions.
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29
#define COSMOS_ERROR_IMPL
Use this in each type derived from CosmosError to apply mandatory overrides.
Definition macros.hxx:30