throw
The throw keyword is used to throw exceptions; throwing exceptions unwinds the stack.
Syntax
try
{
throw exception;
}
catch( Exception& ex )
{
}
The throw keyword is used to throw exceptions; throwing exceptions unwinds the stack.
try
{
throw exception;
}
catch( Exception& ex )
{
}