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

6 lines
94 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
class MyException : Exception
2017-09-23 10:01:46 +02:00
{
2019-09-12 10:33:56 -07:00
constructor new()
2020-02-17 23:21:07 -08:00
<= new("MyException raised");
2017-09-23 10:01:46 +02:00
}