This may sound a very silly question. Sorry.
In the examples of cURLpp API I see this:
int main(int, char **)
{
try {
some code...
}
some code...
return 0;
}
What is that "try"?
It precedes bracketed statements and it's not declared anywhere.
Is it a special construct of the language syntax?