11#include <cosmos/error/CosmosError.hxx>
12#include <cosmos/error/errno.hxx>
33 ADDR_FAMILY = EAI_ADDRFAMILY,
37 BAD_FLAGS = EAI_BADFLAGS,
49 SERVICE = EAI_SERVICE,
51 SOCKTYPE = EAI_SOCKTYPE,
77 return m_system_errno;
81 std::string_view
msg()
const {
return msg(m_eai_code); }
83 static std::string_view msg(
const Code code);
89 void generateMsg()
const override;
Base class for libcosmos exceptions.
Specialized error type for AddressInfoList resolve errors.
Errno systemError() const
Returns the "other system error" if code() is Code::SYSTEM.
Errno m_system_errno
If m_eai_code == Code::EAI_SYSTEM this contains the system error.
Code m_eai_code
The plain resolve error code.
Code
Possible resolve error codes that can be stored in ResolveError.
std::string_view msg() const
Returns the plain resolver error message.
Code code() const
Returns the plain resolve error code stored in the exception.
Errno
Strong enum type representing errno error constants.
@ OVERFLOW
value too large to be stored in data type
@ AGAIN
resource unavailable, try again (e.g. non-blocking I/O)
@ NO_DATA
no message available
#define COSMOS_ERROR_IMPL
Use this in each type derived from CosmosError to apply mandatory overrides.