Exception.h

Includes:
<stdexcept>

Introduction

Use the links in the table of contents to the left to access the documentation.



Functions

Exception

Exception


template <typename... Ts> Exception(
    Ts&&... args);  
Discussion

X


Structs and Unions

ExceptionImpl

ExceptionImpl


template <class ErrorInfoT> struct ExceptionImpl : Exception { 
    ExceptionImpl(
        ErrorInfoT&& errorInfo);  
    using Base = ExceptionImpl<ErrorInfoT>;  
    const ErrorInfoT errorInfo; 
};  
Discussion

XX