ProGestion/Base/uExceptions.pas
2007-06-21 16:12:43 +00:00

22 lines
402 B
ObjectPascal

unit uExceptions;
interface
uses
uDADataTable;
const
AUF_FKVIOLATION = 'violation of FOREIGN KEY';
AUF_HAVEVALUE = 'must have a value';
AUF_HAVEVALUE2 = 'value required';
type
IApplyUpdateFailedException = interface
['{B090A762-3D65-405E-A810-14DB4F6E8F82}']
procedure ShowApplyUpdateFailed (const Error: EDAApplyUpdateFailed);
end;
implementation
end.