RosettaCodeData/Task/Exceptions/HolyC/exceptions-1.holyc
2023-07-01 13:44:08 -04:00

8 lines
175 B
Text

try {
U8 *err = 'Error';
throw(err); // throw exception
} catch {
if (err == 'Error')
Print("Raised 'Error'");
PutExcept; // print the exception and stack trace
}