SDL  2.0
VULKAN_HPP_NAMESPACE::SystemError Class Reference

#include <vulkan.hpp>

+ Inheritance diagram for VULKAN_HPP_NAMESPACE::SystemError:
+ Collaboration diagram for VULKAN_HPP_NAMESPACE::SystemError:

Public Member Functions

 SystemError (std::error_code ec)
 
 SystemError (std::error_code ec, std::string const &what)
 
 SystemError (std::error_code ec, char const *what)
 
 SystemError (int ev, std::error_category const &ecat)
 
 SystemError (int ev, std::error_category const &ecat, std::string const &what)
 
 SystemError (int ev, std::error_category const &ecat, char const *what)
 
virtual const char * what () const VULKAN_HPP_NOEXCEPT
 
- Public Member Functions inherited from VULKAN_HPP_NAMESPACE::Error
 Error () VULKAN_HPP_NOEXCEPT=default
 
 Error (const Error &) VULKAN_HPP_NOEXCEPT=default
 
virtual ~Error () VULKAN_HPP_NOEXCEPT=default
 

Detailed Description

Definition at line 13745 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ SystemError() [1/6]

VULKAN_HPP_NAMESPACE::SystemError::SystemError ( std::error_code  ec)
inline

Definition at line 13748 of file vulkan.hpp.

13749  : Error(), std::system_error(ec) {}
Error() VULKAN_HPP_NOEXCEPT=default

◆ SystemError() [2/6]

VULKAN_HPP_NAMESPACE::SystemError::SystemError ( std::error_code  ec,
std::string const &  what 
)
inline

Definition at line 13750 of file vulkan.hpp.

13751  : Error(), std::system_error(ec, what) {}
virtual const char * what() const VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:13761

◆ SystemError() [3/6]

VULKAN_HPP_NAMESPACE::SystemError::SystemError ( std::error_code  ec,
char const *  what 
)
inline

Definition at line 13752 of file vulkan.hpp.

13753  : 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 13754 of file vulkan.hpp.

13755  : 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 13756 of file vulkan.hpp.

13757  : 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 13758 of file vulkan.hpp.

13759  : Error(), std::system_error(ev, ecat, what) {}

Member Function Documentation

◆ what()

virtual const char* VULKAN_HPP_NAMESPACE::SystemError::what ( ) const
inlinevirtual

Implements VULKAN_HPP_NAMESPACE::Error.

Definition at line 13761 of file vulkan.hpp.

13761 { return std::system_error::what(); }

The documentation for this class was generated from the following file: