#include <vulkan.hpp>
Definition at line 731 of file vulkan.hpp.
◆ SystemError() [1/6]
VULKAN_HPP_NAMESPACE::SystemError::SystemError |
( |
std::error_code |
ec | ) |
|
|
inline |
Definition at line 734 of file vulkan.hpp.
735 : Error(), std::system_error(ec) {}
◆ SystemError() [2/6]
VULKAN_HPP_NAMESPACE::SystemError::SystemError |
( |
std::error_code |
ec, |
|
|
std::string const & |
what |
|
) |
| |
|
inline |
Definition at line 736 of file vulkan.hpp.
737 : Error(), std::system_error(ec,
what) {}
virtual const char * what() const noexcept
◆ SystemError() [3/6]
VULKAN_HPP_NAMESPACE::SystemError::SystemError |
( |
std::error_code |
ec, |
|
|
char const * |
what |
|
) |
| |
|
inline |
Definition at line 738 of file vulkan.hpp.
739 : Error(), std::system_error(ec,
what) {}
◆ SystemError() [4/6]
VULKAN_HPP_NAMESPACE::SystemError::SystemError |
( |
int |
ev, |
|
|
std::error_category const & |
ecat |
|
) |
| |
|
inline |
Definition at line 740 of file vulkan.hpp.
741 : Error(), std::system_error(ev, ecat) {}
◆ SystemError() [5/6]
VULKAN_HPP_NAMESPACE::SystemError::SystemError |
( |
int |
ev, |
|
|
std::error_category const & |
ecat, |
|
|
std::string const & |
what |
|
) |
| |
|
inline |
Definition at line 742 of file vulkan.hpp.
743 : Error(), std::system_error(ev, ecat,
what) {}
◆ SystemError() [6/6]
VULKAN_HPP_NAMESPACE::SystemError::SystemError |
( |
int |
ev, |
|
|
std::error_category const & |
ecat, |
|
|
char const * |
what |
|
) |
| |
|
inline |
Definition at line 744 of file vulkan.hpp.
745 : Error(), std::system_error(ev, ecat,
what) {}
◆ ~SystemError()
virtual VULKAN_HPP_NAMESPACE::SystemError::~SystemError |
( |
| ) |
|
|
virtualdefault |
◆ what()
virtual const char * VULKAN_HPP_NAMESPACE::SystemError::what |
( |
| ) |
const |
|
inlinevirtualnoexcept |
The documentation for this class was generated from the following file: