|
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <chrono> | ||
class nonexistent_local_time; | (since C++20) | |
Defines a type of object to be thrown as exception to report that an attempt was made to convert a nonexistentstd::chrono::local_time to astd::chrono::sys_time without specifying astd::chrono::choose (such aschoose::earliest orchoose::latest).
This exception is thrown bystd::chrono::time_zone::to_sys and functions that call it (such as the constructors ofstd::chrono::zoned_time that take astd::chrono::local_time).
Inheritance diagram
Contents |
(constructor) | constructs the exception object (public member function) |
operator= | replaces the exception object (public member function) |
what | returns the explanatory string (public member function) |
template<class Duration> nonexistent_local_time(conststd::chrono::local_time<Duration>& tp, | (1) | (since C++20) |
nonexistent_local_time(const nonexistent_local_time& other)noexcept; | (2) | (since C++20) |
Constructs the exception object.
what() is equivalent to that produced byos.str() after the following code:std::ostringstream os;os<< tp<<" is in a gap between\n"<<std::chrono::local_seconds(i.first.end.time_since_epoch())+ i.first.offset<<' '<< i.first.abbrev<<" and\n"<<std::chrono::local_seconds(i.second.begin.time_since_epoch())+ i.second.offset<<' '<< i.second.abbrev<<" which are both equivalent to\n"<< i.first.end<<" UTC";
std::chrono::nonexistent_local_time thenstd::strcmp(what(), other.what())==0.| tp | - | the time point for which conversion was attempted |
| i | - | astd::chrono::local_info describing the result of the conversion attempt |
| other | - | anothernonexistent_local_time to copy |
May throwstd::bad_alloc
Because copying a standard library class derived fromstd::exception is not permitted to throw exceptions, this message is typically stored internally as a separately-allocated reference-counted string.
nonexistent_locale_time& operator=(const nonexistent_locale_time& other)noexcept; | (since C++20) | |
Assigns the contents with those ofother. If*this andother both have dynamic typestd::chrono::nonexistent_locale_time thenstd::strcmp(what(), other.what())==0 after assignment.
| other | - | another exception object to assign with |
*this
virtualconstchar* what()constnoexcept; | (since C++20) | |
Returns the explanatory string.
Pointer to an implementation-defined null-terminated string with explanatory information. The string is suitable for conversion and display as astd::wstring. The pointer is guaranteed to be valid at least until the exception object from which it is obtained is destroyed, or until a non-const member function (e.g. copy assignment operator) on the exception object is called.
Implementations are allowed but not required to overridewhat().
[virtual] | destroys the exception object (virtual public member function of std::exception)[edit] |
[virtual] | returns an explanatory string (virtual public member function of std::exception)[edit] |
(C++20) | exception thrown to report that a local time is ambiguous (class)[edit] |