8 lines
175 B
Text
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
|
|
}
|