Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/language/except spec"

From cppreference.com
< cpp‎ | language
m
(Removed the keyword revbox.)
 
(32 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{title|dynamic exception specification}}
+
{{title|Dynamic exception specification {{mark until c++17}}}}
 
{{cpp/language/exceptions/navbar}}
 
{{cpp/language/exceptions/navbar}}
  
Line 6: Line 6:
 
===Syntax===
 
===Syntax===
 
{{sdsc begin}}
 
{{sdsc begin}}
{{sdsc | num=1 | {{ttb|throw(}} {{ttb|)}} | notes={{mark|deprecated in C++11}}{{mark until c++20}}}}
+
{{sdsc|num=1|{{ttb|throw(}}{{spar optional|type-id-list}}{{ttb|)}}|notes={{mark life|deprecated=c++11|removed=c++17|br=yes}}}}
{{sdsc | num=2 | {{ttb|throw(}}{{spar|typeid, typeid, ...}}{{ttb|)}} | notes={{mark|deprecated in C++11}}{{mark until c++17}}}}
+
 
{{sdsc end}}
 
{{sdsc end}}
{{rev begin}}
+
@1@ Explicit dynamic exception specification.
{{rev|until=c++17|
+
 
@1@ Non-throwing dynamic exception specification
+
{{par begin}}
}}
+
{{par|{{spar|type-id-list}}|comma-separated list of {{rlp|type#Type naming|type-id}}s{{rev inl|since=c++11|, a type-id representing a {{rlp|parameter pack#Pack expansion|pack expansion}} is followed by an ellipsis (...)}}}}
{{rev|since=c++17|
+
{{par end}}
@1@ Same as {{ltt|cpp/language/noexcept_spec|noexcept(true)}}
+
}}
+
{{rev end}}
+
@2@ Explicit dynamic exception specification
+
  
This specification may appear only on lambda-declarator or on a function declarator that is the {{rev inl|until=c++17|top-level}} declarator of a function, variable, or non-static data member, whose type is a function type, a pointer to function type, a reference to function type, a pointer to member function type. It may appear on the declarator of a parameter or on the declarator of a return type.
+
An explicit dynamic exception specification shall appear only on a function declarator for a function type, pointer to function type, reference to function type, or pointer to member function type that is the top-level type of a declaration or definition, or on such a type appearing as a parameter or return type in a function declarator.
 
{{source|
 
{{source|
void f() throw(int); // OK: function declaration
+
void f() throw(int);           // OK: function declaration
void (*pf)() throw (int); // OK: pointer to function declaration
+
void (*pf)() throw (int);       // OK: pointer to function declaration
void g(void pfa() throw(int)); // OK: pointer to function parameter declaration
+
void g(void pfa() throw(int)); // OK: pointer to function parameter declaration
 
typedef int (*pf)() throw(int); // Error: typedef declaration
 
typedef int (*pf)() throw(int); // Error: typedef declaration
 
}}
 
}}
  
 
===Explanation===
 
===Explanation===
 +
If a function is declared with type {{tt|T}} listed in its dynamic exception specification, the function may throw exceptions of that type or a type derived from it.
  
If a function is declared with type {{tt|T}} listed in its exception specification, the function may throw exceptions of that type or a type derived from it.
+
{{rlp|incomplete type|Incomplete types}}, pointers or references to incomplete types other than cv {{tt|void*}}{{rev inl|since=c++11|, and rvalue reference types}} are not allowed in the exception specification. Array and function types, if used, are adjusted to corresponding pointer types, top level cv-qualifications are also dropped. {{rev inl|since=c++11|{{rlp|parameter pack}}s are allowed}}.
  
{{rlp|incomplete type|Incomplete types}}, pointers or references to incomplete types other than cv {{tt|void*}}, and rvalue reference types are not allowed in the exception specification. Array and function types, if used, are adjusted to corresponding pointer types. {{rev inl|since=c++11|{{rlp|parameter pack}}s are allowed}}.
+
A dynamic exception specification whose set of adjusted types is empty {{rev inl|since=c++11|(after any packs are expanded)}} is non-throwing. A function with a non-throwing dynamic exception specification does not allow any exceptions.
 +
 
 +
A dynamic exception specification is not considered part of a function’s type.
  
 
If the function throws an exception of the type not listed in its exception specification, the function {{lc|std::unexpected}} is called. The default function calls {{lc|std::terminate}}, but it may be replaced by a user-provided function (via {{lc|std::set_unexpected}}) which may call {{lc|std::terminate}} or throw an exception. If the exception thrown from {{lc|std::unexpected}} is accepted by the exception specification, stack unwinding continues as usual. If it isn't, but {{lc|std::bad_exception}} is allowed by the exception specification, {{lc|std::bad_exception}} is thrown. Otherwise, {{lc|std::terminate}} is called.
 
If the function throws an exception of the type not listed in its exception specification, the function {{lc|std::unexpected}} is called. The default function calls {{lc|std::terminate}}, but it may be replaced by a user-provided function (via {{lc|std::set_unexpected}}) which may call {{lc|std::terminate}} or throw an exception. If the exception thrown from {{lc|std::unexpected}} is accepted by the exception specification, stack unwinding continues as usual. If it isn't, but {{lc|std::bad_exception}} is allowed by the exception specification, {{lc|std::bad_exception}} is thrown. Otherwise, {{lc|std::terminate}} is called.
  
{{rev begin}}
+
====Instantiation====
{{rev|since=c++17|
+
The dynamic exception specification of a function template specialization is not instantiated along with the function declaration; it is instantiated only when ''needed'' (as defined below).
 +
 
 +
The dynamic exception specification of an implicitly-declared special member function is also evaluated only when needed (in particular, implicit declaration of a member function of a derived class does not require the exception-specification of a base member function to be instantiated).
 +
 
 +
When the dynamic exception specification of a function template specialization is ''needed'', but has not yet been instantiated, the dependent names are looked up and any templates used in the {{spar|expression}} are instantiated as if for the declaration of the specialization.
 +
 
 +
A dynamic exception specification of a function is considered to be ''needed'' in the following contexts:
 +
* in an expression, where the function is selected by overload resolution
 +
* the function is {{rlp|definition#ODR-use|odr-used}}
 +
* the function would be odr-used but appears in an unevaluated operand
 +
{{source|1=
 +
template<class T>
 +
T f() throw(std::array<char, sizeof(T)>);
 +
 
 +
int main()
 +
{
 +
    decltype(f<void>()) *p; // f unevaluated, but exception specification is needed
 +
                            // error because instantiation of the exception specification
 +
                            // calculates sizeof(void)
 +
}
 +
}}
 +
* the specification is needed to compare to another function declaration (e.g. on a virtual function overrider or on an explicit specialization of a function template)
 +
* in a function definition
 +
* the specification is needed because a defaulted special member function needs to check it in order to decide its own exception specification (this takes place only when the specification of the defaulted special member function is, itself, needed).
 +
 
 
===Potential exceptions===
 
===Potential exceptions===
 
Each function {{tt|f}}, pointer to function {{tt|pf}}, and pointer to member function {{tt|pmf}} has a ''set of potential exceptions'', which consists of types that might be thrown. Set of all types indicates that any exception may be thrown. This set is defined as follows:
 
Each function {{tt|f}}, pointer to function {{tt|pf}}, and pointer to member function {{tt|pmf}} has a ''set of potential exceptions'', which consists of types that might be thrown. Set of all types indicates that any exception may be thrown. This set is defined as follows:
@1@ If the declaration of {{tt|f}}, {{tt|pf}}, or {{tt|pmf}} uses {{tt|throw()}}{{mark deprecated}} or {{rlp|noexcept}}, the set is empty.
+
@1@ If the declaration of {{tt|f}}, {{tt|pf}}, or {{tt|pmf}} uses a dynamic exception specification{{rev inl|until=c++11| that does not allow all exceptions}}, the set consists of the types listed in that specification.
@2@ Otherwise, if the declaration of {{tt|f}}, {{tt|pf}}, or {{tt|pmf}} uses a dynamic exception specification{{mark deprecated}}, the set consists of the types listed in that specification
+
@3@ Otherwise, the set is the set of all types
+
  
Note: for implicitly-declared special member functions (constructors, assignment operators, and destructors) and for the inheriting constructors, the set of potential exceptions is a combination of the sets of the potential exceptions of everything they would call: constructors/assignment operators/destructors of non-variant non-static data members, direct bases, and, where appropriate, virtual bases (including default argument expressions, as always)
+
{{rrev|since=c++11|@2@ Otherwise, if the declaration of {{tt|f}}, {{tt|pf}}, or {{tt|pmf}} uses {{rlpt|noexcept|noexcept(true)}}, the set is empty.}}
 +
@3@ Otherwise, the set is the set of all types.
  
Each expression {{tt|e}} has a ''set of potential exceptions'', which is the union of the sets of potential exceptions of all immediate subexpressions of {{tt|e}} (including {{rlp|default arguments|default argument expressions}}), combined with another set that depends on the form of {{tt|e}}, as follows:
+
Note: for implicitly-declared special member functions (constructors, assignment operators, and destructors){{rev inl|since=c++11| and for the inheriting constructors}}, the set of potential exceptions is a combination of the sets of the potential exceptions of everything they would call: constructors/assignment operators/destructors of non-variant non-static data members, direct bases, and, where appropriate, virtual bases (including default argument expressions, as always).
@1@ If {{tt|e}} is a function call expression, and
+
 
* the function is named by an id-expression (either directly or as part of member access or pointer-to-member access expression), the set of potential exceptions of the named function is added to the list.
+
Each expression {{tt|e}} has a ''set of potential exceptions''. The set is empty if {{tt|e}} is a {{rlp|constant expression|core constant expression}}, otherwise, it is the union of the sets of potential exceptions of all immediate subexpressions of {{tt|e}} (including {{rlp|default arguments|default argument expressions}}), combined with another set that depends on the form of {{tt|e}}, as follows:
* if the function is named by an expression of type noexcept function or by an expression of type pointer to noexcept function, the set is empty
+
@1@ If {{tt|e}} is a function call expression, let {{tt|g}} denote the function, function pointer, or pointer to member function that is that is called, then
* otherwise, the set is the set of all types
+
:* if the declaration of {{tt|g}} uses a dynamic exception specification, the set of potential exceptions of {{tt|g}} is added to the set;
 +
{{rrev|since=c++11|:* if the declaration of {{tt|g}} uses {{rlpt|noexcept|noexcept(true)}}, the set is empty;}}
 +
:* otherwise, the set is the set of all types.
 
@2@ If {{tt|e}} calls a function implicitly (it's an operator expression and the operator is overloaded, it is a {{rlp|new|new-expression}} and the allocation function is overloaded, or it is a full expression and the destructor of a temporary is called), then the set is the set of that function.
 
@2@ If {{tt|e}} calls a function implicitly (it's an operator expression and the operator is overloaded, it is a {{rlp|new|new-expression}} and the allocation function is overloaded, or it is a full expression and the destructor of a temporary is called), then the set is the set of that function.
@3@ If {{tt|e}} is a {{rlp|throw|throw-expression}}, the set is the exception that would be initialized by its operand, or the set of all types for the re-throwing throw-expression (with no operand)
+
@3@ If {{tt|e}} is a {{rlp|throw|throw-expression}}, the set is the exception that would be initialized by its operand, or the set of all types for the re-throwing throw-expression (with no operand).
@4@ If {{tt|e}} is a {{rlp|dynamic_cast}} to a reference to a polymorphic type, the set consists of {{lc|std::bad_cast}}
+
@4@ If {{tt|e}} is a {{rlpt|dynamic_cast}} to a reference to a polymorphic type, the set consists of {{lc|std::bad_cast}}.
@5@ If {{tt|e}} is a {{rlp|typeid}} applied to a polymorphic glvalue, the set consists of {{lc|std::bad_typeid}}
+
@5@ If {{tt|e}} is a {{rlpt|typeid}} applied to a dereferenced pointer to a polymorphic type, the set consists of {{lc|std::bad_typeid}}.
@6@ If {{tt|e}} is a {{rlp|new|new-expression}} with a non-constant size, the set consists of {{lc|std::bad_array_new_length}}
+
  
 +
{{rrev|since=c++11|@6@ If {{tt|e}} is a {{rlp|new|new-expression}} with a non-constant array size, and the selected allocation function has a non-empty set of potential exceptions, the set consists of {{lc|std::bad_array_new_length}}.}}
 
{{source|1=
 
{{source|1=
void f() throw(int); // f()'s set is "int"
+
void f() throw(int); // f()'s set is "int"
void g();             // g()'s set is the set of all types
+
void g();           // g()'s set is the set of all types
struct A { A(); };   // "new A"'s set is the set of all types
+
 
struct B { B() noexcept; }; // "B()"'s set is empty
+
struct A { A(); };                 // "new A"'s set is the set of all types
 +
struct B { B() noexcept; };         // "B()"'s set is empty
 
struct D() { D() throw (double); }; // new D's set is the set of all types
 
struct D() { D() throw (double); }; // new D's set is the set of all types
 
}}
 
}}
  
All implicitly-declared member functions (and inheriting constructors) have exception specifications, selected as follows:
+
All implicitly-declared member functions {{rev inl|since=c++11|and inheriting constructors }}have exception specifications, selected as follows:
* If the set of potential exceptions is the set of all types, the implicit exception specification is {{c|noexcept(false)}}.
+
* If the set of potential exceptions is the set of all types, the implicit exception specification {{rev inl|until=c++11|allows all exceptions (the exception specification is considered present, even though it is inexpressible in code and behaves as if there is no exception specification)}}{{rev inl|since=c++11|is {{c|noexcept(false)}}}}.
* Otherwise, If the set of potential exceptions is not empty, the implicit exception specification lists every type from the set
+
* Otherwise, If the set of potential exceptions is not empty, the implicit exception specification lists every type from the set.
* Otherwise, the implicit exception specification is {{c|noexcept(true)}} and the function type is "noexcept function"
+
* Otherwise, the implicit exception specification is {{rev inl|until=c++11|{{c|throw()}}}}{{rev inl|since=c++11|{{c|noexcept(true)}}}}.
  
 
{{source|1=
 
{{source|1=
struct A {
+
struct A
 +
{
 
     A(int = (A(5), 0)) noexcept;
 
     A(int = (A(5), 0)) noexcept;
 
     A(const A&) throw();
 
     A(const A&) throw();
Line 76: Line 101:
 
     ~A() throw(X);
 
     ~A() throw(X);
 
};
 
};
struct B {
+
 
 +
struct B
 +
{
 
     B() throw();
 
     B() throw();
 
     B(const B&) = default; // exception specification is "noexcept(true)"
 
     B(const B&) = default; // exception specification is "noexcept(true)"
Line 82: Line 109:
 
     ~B() throw(Y);
 
     ~B() throw(Y);
 
};
 
};
 +
 
int n = 7;
 
int n = 7;
struct D : public A, public B {
+
struct D : public A, public B
     int * p = new (std::nothrow) int[n];
+
{
     // D has the following implicitly-declared members:
+
     // May throw an exception of a type that would match a handler of type
 +
    // std​::​bad_array_new_length, but does not throw a bad allocation exception
 +
    (void*) new (std::nothrow) int[n];
 +
 
 +
     // D may have the following implicitly-declared members:
 
     // D::D() throw(X, std::bad_array_new_length);
 
     // D::D() throw(X, std::bad_array_new_length);
 
     // D::D(const D&) noexcept(true);
 
     // D::D(const D&) noexcept(true);
Line 92: Line 124:
 
};
 
};
 
}}
 
}}
}}
+
 
{{rev end}}
+
===Notes===
 +
Clang considers the rule of instantiation of dynamic exception specification is changed in C++11 by {{wg21|CWG1330}}, see [https://github.com/llvm/llvm-project/issues/56439 LLVM #56349].
 +
 
 +
===Keywords===
 +
{{ltt|cpp/keyword/throw}}
  
 
===Example===
 
===Example===
 
 
{{example
 
{{example
|  
+
|Note: best be compiled in C++98 mode to avoid warnings. Incompatible with C++17 and newer revisions.
| code=
+
|code=
#include <iostream>
+
#include <exception>
+
 
#include <cstdlib>
 
#include <cstdlib>
 +
#include <exception>
 +
#include <iostream>
  
 
class X {};
 
class X {};
Line 111: Line 146:
 
void f() throw(X, Y)  
 
void f() throw(X, Y)  
 
{
 
{
     int n = 0;
+
     bool n = false;
     if (n) throw X(); // OK
+
 
     if (n) throw Z(); // also OK
+
     if (n)
 +
        throw X(); // OK, would call std::terminate()
 +
     if (n)
 +
        throw Z(); // also OK
 +
 
 
     throw W(); // will call std::unexpected()
 
     throw W(); // will call std::unexpected()
 
}
 
}
  
int main() {
+
void handler()
  std::set_unexpected([]{
+
{
      std::cout << "That was unexpected" << std::endl; // flush needed
+
    std::cerr << "That was unexpected!\n"; // flush needed
      std::abort();
+
    std::abort();
  });
+
  f();
+
 
}
 
}
| output=
+
 
That was unexpected  
+
int main()
 +
{
 +
    std::set_unexpected(handler);
 +
    f();
 +
}
 +
|output=
 +
That was unexpected!
 
}}
 
}}
  
===See also===
+
===Defect reports===
 +
{{dr list begin}}
 +
{{dr list item|wg=cwg|dr=25|std=C++98|before=the behavior of assignment and initialization<br>between pointers to members with different<br>exception specifications was unspecified|after=apply the restriction<br>for function pointers<br>and references}}
 +
{{dr list item|wg=cwg|dr=973|std=C++98|before=exception specification may contain functions types, but the<br>corresponding function pointer conversion was not specified|after=specified}}
 +
{{dr list item|wg=cwg|dr=1330|std=C++98|before=an exception specification might be eagerly instantiated|after=it is only instantiated only if needed}}
 +
{{dr list item|wg=cwg|dr=1267|std=C++11|before=rvalue reference types were allowed in exception specifications|after=not allowed}}
 +
{{dr list item|wg=cwg|dr=1351|std=C++98<br>C++11|before=default argument (C++98) and default member initializer<br>(C++11) were ignored in implicit exception specification|after=made considered}}
 +
{{dr list item|wg=cwg|dr=1777|std=C++11|before={{c|throw(T...)}} was not a non-throwing<br>specification even if {{c|T}} is an empty pack|after=it is non-throwing<br>if the pack is empty}}
 +
{{dr list item|wg=cwg|dr=2191|std=C++98|before=the set of potential exceptions of a {{tt|typeid}} expression<br>might contain {{tt|bad_typeid}} even if it cannot be thrown|after=contains {{tt|bad_typeid}}<br>only if it can be thrown}}
 +
{{dr list end}}
  
*[[cpp/language/noexcept_spec | {{tt|noexcept}} specifier]]
+
===See also===
 +
{{dsc begin}}
 +
{{dsc inc|cpp/language/dsc noexcept spec}}
 +
{{dsc end}}
  
[[de:cpp/language/except spec]]
+
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
[[es:cpp/language/except spec]]
+
[[fr:cpp/language/except spec]]
+
[[it:cpp/language/except spec]]
+
[[ja:cpp/language/except spec]]
+
[[pt:cpp/language/except spec]]
+
[[ru:cpp/language/except spec]]
+
[[zh:cpp/language/except spec]]
+

Latest revision as of 23:41, 11 August 2024

 
 
C++ language
General topics
Flow control
Conditional execution statements
if
Iteration statements (loops)
for
range-for (C++11)
Jump statements
Functions
Function declaration
Lambda function expression
inline specifier
Dynamic exception specifications (until C++17*)
noexcept specifier (C++11)
Exceptions
Namespaces
Types
Specifiers
const/volatile
decltype (C++11)
auto (C++11)
constexpr (C++11)
consteval (C++20)
constinit (C++20)
Storage duration specifiers
Initialization
Expressions
Alternative representations
Literals
Boolean - Integer - Floating-point
Character - String - nullptr (C++11)
User-defined (C++11)
Utilities
Attributes (C++11)
Types
typedef declaration
Type alias declaration (C++11)
Casts
Memory allocation
Classes
Class-specific function properties
explicit (C++11)
static

Special member functions
Templates
Miscellaneous
 
Exceptions
try block
Throwing exceptions
Handling exceptions
Exception specification
    noexcept specification (C++11)
    dynamic specification (until C++17*)
noexcept operator (C++11)
 

Lists the exceptions that a function might directly or indirectly throw.

Contents

[edit] Syntax

throw(type-id-list (optional)) (1) (deprecated in C++11)
(removed in C++17)
1) Explicit dynamic exception specification.
type-id-list - comma-separated list of type-ids, a type-id representing a pack expansion is followed by an ellipsis (...)(since C++11)

An explicit dynamic exception specification shall appear only on a function declarator for a function type, pointer to function type, reference to function type, or pointer to member function type that is the top-level type of a declaration or definition, or on such a type appearing as a parameter or return type in a function declarator.

void f() throw(int);            // OK: function declaration
void (*pf)() throw (int);       // OK: pointer to function declaration
void g(void pfa() throw(int));  // OK: pointer to function parameter declaration
typedef int (*pf)() throw(int); // Error: typedef declaration

[edit] Explanation

If a function is declared with type T listed in its dynamic exception specification, the function may throw exceptions of that type or a type derived from it.

Incomplete types, pointers or references to incomplete types other than cv void*, and rvalue reference types(since C++11) are not allowed in the exception specification. Array and function types, if used, are adjusted to corresponding pointer types, top level cv-qualifications are also dropped. parameter packs are allowed(since C++11).

A dynamic exception specification whose set of adjusted types is empty (after any packs are expanded)(since C++11) is non-throwing. A function with a non-throwing dynamic exception specification does not allow any exceptions.

A dynamic exception specification is not considered part of a function’s type.

If the function throws an exception of the type not listed in its exception specification, the function std::unexpected is called. The default function calls std::terminate, but it may be replaced by a user-provided function (via std::set_unexpected) which may call std::terminate or throw an exception. If the exception thrown from std::unexpected is accepted by the exception specification, stack unwinding continues as usual. If it isn't, but std::bad_exception is allowed by the exception specification, std::bad_exception is thrown. Otherwise, std::terminate is called.

[edit] Instantiation

The dynamic exception specification of a function template specialization is not instantiated along with the function declaration; it is instantiated only when needed (as defined below).

The dynamic exception specification of an implicitly-declared special member function is also evaluated only when needed (in particular, implicit declaration of a member function of a derived class does not require the exception-specification of a base member function to be instantiated).

When the dynamic exception specification of a function template specialization is needed, but has not yet been instantiated, the dependent names are looked up and any templates used in the expression are instantiated as if for the declaration of the specialization.

A dynamic exception specification of a function is considered to be needed in the following contexts:

  • in an expression, where the function is selected by overload resolution
  • the function is odr-used
  • the function would be odr-used but appears in an unevaluated operand
template<class T>
T f() throw(std::array<char, sizeof(T)>);
 
int main()
{
    decltype(f<void>()) *p; // f unevaluated, but exception specification is needed
                            // error because instantiation of the exception specification
                            // calculates sizeof(void)
}
  • the specification is needed to compare to another function declaration (e.g. on a virtual function overrider or on an explicit specialization of a function template)
  • in a function definition
  • the specification is needed because a defaulted special member function needs to check it in order to decide its own exception specification (this takes place only when the specification of the defaulted special member function is, itself, needed).

[edit] Potential exceptions

Each function f, pointer to function pf, and pointer to member function pmf has a set of potential exceptions, which consists of types that might be thrown. Set of all types indicates that any exception may be thrown. This set is defined as follows:

1) If the declaration of f, pf, or pmf uses a dynamic exception specification that does not allow all exceptions(until C++11), the set consists of the types listed in that specification.
2) Otherwise, if the declaration of f, pf, or pmf uses noexcept(true), the set is empty.
(since C++11)
3) Otherwise, the set is the set of all types.

Note: for implicitly-declared special member functions (constructors, assignment operators, and destructors) and for the inheriting constructors(since C++11), the set of potential exceptions is a combination of the sets of the potential exceptions of everything they would call: constructors/assignment operators/destructors of non-variant non-static data members, direct bases, and, where appropriate, virtual bases (including default argument expressions, as always).

Each expression e has a set of potential exceptions. The set is empty if e is a core constant expression, otherwise, it is the union of the sets of potential exceptions of all immediate subexpressions of e (including default argument expressions), combined with another set that depends on the form of e, as follows:

1) If e is a function call expression, let g denote the function, function pointer, or pointer to member function that is that is called, then
  • if the declaration of g uses a dynamic exception specification, the set of potential exceptions of g is added to the set;
(since C++11)
  • otherwise, the set is the set of all types.
2) If e calls a function implicitly (it's an operator expression and the operator is overloaded, it is a new-expression and the allocation function is overloaded, or it is a full expression and the destructor of a temporary is called), then the set is the set of that function.
3) If e is a throw-expression, the set is the exception that would be initialized by its operand, or the set of all types for the re-throwing throw-expression (with no operand).
4) If e is a dynamic_cast to a reference to a polymorphic type, the set consists of std::bad_cast.
5) If e is a typeid applied to a dereferenced pointer to a polymorphic type, the set consists of std::bad_typeid.
6) If e is a new-expression with a non-constant array size, and the selected allocation function has a non-empty set of potential exceptions, the set consists of std::bad_array_new_length.
(since C++11)
void f() throw(int); // f()'s set is "int"
void g();            // g()'s set is the set of all types
 
struct A { A(); };                  // "new A"'s set is the set of all types
struct B { B() noexcept; };         // "B()"'s set is empty
struct D() { D() throw (double); }; // new D's set is the set of all types

All implicitly-declared member functions and inheriting constructors (since C++11)have exception specifications, selected as follows:

  • If the set of potential exceptions is the set of all types, the implicit exception specification allows all exceptions (the exception specification is considered present, even though it is inexpressible in code and behaves as if there is no exception specification)(until C++11)is noexcept(false)(since C++11).
  • Otherwise, If the set of potential exceptions is not empty, the implicit exception specification lists every type from the set.
  • Otherwise, the implicit exception specification is throw()(until C++11)noexcept(true)(since C++11).
struct A
{
    A(int = (A(5), 0)) noexcept;
    A(const A&) throw();
    A(A&&) throw();
    ~A() throw(X);
};
 
struct B
{
    B() throw();
    B(const B&) = default; // exception specification is "noexcept(true)"
    B(B&&, int = (throw Y(), 0)) noexcept;
    ~B() throw(Y);
};
 
int n = 7;
struct D : public A, public B
{
    // May throw an exception of a type that would match a handler of type
    // std​::​bad_array_new_length, but does not throw a bad allocation exception
    (void*) new (std::nothrow) int[n];
 
    // D may have the following implicitly-declared members:
    // D::D() throw(X, std::bad_array_new_length);
    // D::D(const D&) noexcept(true);
    // D::D(D&&) throw(Y);
    // D::~D() throw(X, Y);
};

[edit] Notes

Clang considers the rule of instantiation of dynamic exception specification is changed in C++11 by CWG1330, see LLVM #56349.

[edit] Keywords

throw

[edit] Example

Note: best be compiled in C++98 mode to avoid warnings. Incompatible with C++17 and newer revisions.

#include <cstdlib>
#include <exception>
#include <iostream>
 
class X {};
class Y {};
class Z : public X {};
class W {};
 
void f() throw(X, Y) 
{
    bool n = false;
 
    if (n)
        throw X(); // OK, would call std::terminate()
    if (n)
        throw Z(); // also OK
 
    throw W(); // will call std::unexpected()
}
 
void handler()
{
    std::cerr << "That was unexpected!\n"; // flush needed
    std::abort();
}
 
int main()
{
    std::set_unexpected(handler);
    f();
}

Output:

That was unexpected!

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
CWG 25 C++98 the behavior of assignment and initialization
between pointers to members with different
exception specifications was unspecified
apply the restriction
for function pointers
and references
CWG 973 C++98 exception specification may contain functions types, but the
corresponding function pointer conversion was not specified
specified
CWG 1330 C++98 an exception specification might be eagerly instantiated it is only instantiated only if needed
CWG 1267 C++11 rvalue reference types were allowed in exception specifications not allowed
CWG 1351 C++98
C++11
default argument (C++98) and default member initializer
(C++11) were ignored in implicit exception specification
made considered
CWG 1777 C++11 throw(T...) was not a non-throwing
specification even if T is an empty pack
it is non-throwing
if the pack is empty
CWG 2191 C++98 the set of potential exceptions of a typeid expression
might contain bad_typeid even if it cannot be thrown
contains bad_typeid
only if it can be thrown

[edit] See also

noexcept specifier(C++11) specifies whether a function could throw exceptions[edit]