GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::future_error::future_error(3) C++ Standard Libary std::future_error::future_error(3)

std::future_error::future_error - std::future_error::future_error


future_error( const future_error& other ) noexcept; (1) (since C++11)
explicit future_error( std::future_errc ec ); (2) (since C++17)


1) Copy constructor. Initializes the contents of the new future_error object with
those of other. If *this and other both have dynamic type std::future_error then
std::strcmp(what(), other.what()) == 0.
2) Constructs a new future_error object containing the error code
std::make_error_code(ec).


other - another future_error object to copy
ec - error code


There is no standard-compliant way for the user to construct a future_error other
than copying from another future_error prior to C++17. C++11 and C++14 depict an
exposition-only public constructor taking a std::error_code, and some
implementations provide such a constructor.

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.