RosettaCodeData/Task/Exceptions/Elena/exceptions-3.elena

9 lines
103 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
try
{
o.foo()
}
2020-02-17 23:21:07 -08:00
catch:(MyException e)
2019-09-12 10:33:56 -07:00
{
// handle exceptions of type MyException and derived
}