RosettaCodeData/Task/Exceptions/Elena/exceptions-3.elena
2020-02-17 23:21:07 -08:00

8 lines
103 B
Text

try
{
o.foo()
}
catch:(MyException e)
{
// handle exceptions of type MyException and derived
}