mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-23 19:28:48 +02:00
33 lines
400 B
ObjectPascal
33 lines
400 B
ObjectPascal
unit ConverterTypes;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
|
|
// types for errors
|
|
|
|
{ EConverterError }
|
|
|
|
EDelphiConverterError = class(Exception)
|
|
constructor Create(const AMessage: string);
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
{ EConverterError }
|
|
|
|
constructor EDelphiConverterError.Create(const AMessage: string);
|
|
begin
|
|
inherited Create('Converter: '+AMessage);
|
|
end;
|
|
|
|
|
|
end.
|
|
|