15.4 Function Exception Specifiers
Visual Studio 2010
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.