7#include <cosmos/error/CosmosError.hxx>
8#include <cosmos/error/errno.hxx>
22 explicit ApiError(
const std::string_view prefix);
28 std::string
msg()
const {
return msg(m_errno); }
31 static std::string msg(
const Errno err);
34 auto errnum()
const {
return m_errno; }
40 void generateMsg()
const override;
44 Errno m_errno = Errno::NO_ERROR;
Specialized exception type used when system APIs fail.
auto errnum() const
Returns the plain errno stored in the exception.
std::string msg() const
Returns the plain operating system error message.
Base class for libcosmos exceptions.
Errno
Strong enum type representing errno error constants.
#define COSMOS_ERROR_IMPL
Use this in each type derived from CosmosError to apply mandatory overrides.