Скачиваний:
28
Добавлен:
01.05.2014
Размер:
776 б
Скачать
unit Exceptions;

interface

uses
SysUtils;

type
{Классы исключений}
EIllegalArgumentException = class(Exception);
EUnsupportedAttributeTypeException = class(Exception);
EUnassignedClassException = class(Exception);
EUnsupportedClassTypeException = class(Exception);
EIllegalTypeConvertion = class(Exception);
EIllegalStreamException = class(Exception);
EInputFileException = class(Exception);
EIOException = class(Exception);
ESTRException = class(Exception);
EIllegalType = class(Exception);
EArithmeticException = class(Exception);
EIllegalStateException = class(Exception);
ERuntimeException = class(Exception);
ENullPointerException = class(Exception);

implementation

end.
Соседние файлы в папке DMCore