Compiler Error C2311

'exception' : is caught by '...' on line number

The catch handler for the ellipsis (...) must be the last handler for any throw.

The following is an example of this error:

#include <eh.h>
//...
void main()
{
    try
    {
        throw "ooops!";
    }
    catch( ... ) {}  // ellipsis handler is not last catch for this throw
    catch( int ) {}
}