15.4 Function Exception Specifiers

Function exception specifiers other than throw() are parsed but not used. For example:

void f() throw(int); // parsed but not used
void g() throw();    // parsed and used 

For more information on exception specifications, see Exception Specifications.

See Also

Other Resources

Nonstandard Behavior