Namespaces
Variants
Views
Actions

std::exception_list

From cppreference.com
< cpp‎ | error
 
 
 
 
 
Defined in header <exception_list>
class exception_list : public std::exception;

An exception_list owns a sequence of std::exception_ptr objects. An exception of this type may be thrown by a parallel algorithm to report uncaught exceptions encountered during the execution of the algorithm.

Contents

[edit] Member types

Member type Definition
iterator unspecified constant ForwardIterator

[edit] Member functions

returns an iterator to the beginning of the list
(public member function) [edit]
returns an iterator to the end of the list
(public member function) [edit]
returns the number of exceptions in the list
(public member function) [edit]

Inherited from std::exception

Member functions

[virtual]
destructs the exception object
(virtual public member function of std::exception) [edit]
[virtual]
returns an explanatory string
(virtual public member function of std::exception) [edit]

[edit] Example