RosettaCodeData/Task/Exceptions/HolyC/exceptions-1.holyc

9 lines
175 B
Plaintext

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