Struct errno_error
Defined in File error.h
Inheritance Relationships
Base Type
public std::system_error
Struct Documentation
-
struct errno_error : public std::system_error
Represents an error based on the current value of errno.
Public Functions
-
errno_error()
Constructs an errno_error with the current errno value.
-
errno_error(const char *__what)
Constructs an errno_error with the current errno value and an additional message.
- Parameters:
__what – An additional message describing the error.
-
errno_error()