Try/Catch in C^4 works similar to C++.
void throwsSomeStuff() {
throw 123;
}
int main() {
try {
throwsSomeStuff();
} catch (int e) {
...
}
}
However nested try catch is not allowed, as it is additional obfuscation for no reason.