Skip to content

throw

The throw keyword is used to throw exceptions; throwing exceptions unwinds the stack.

Syntax

try
{
    throw exception;
}
catch( Exception& ex )
{
}