pascalabcnet/TestSuite/constructor1.pas

10 lines
163 B
ObjectPascal
Raw Normal View History

2018-08-07 22:23:13 +03:00
type
MyException=class(Exception)
constructor :=
create('Some text');
end;
begin
var ex := new MyException;
assert(ex.Message = 'Some text');
end.