delphimvcframework/samples/master_details/Commons.pas

16 lines
125 B
ObjectPascal
Raw Normal View History

unit Commons;
interface
uses
System.SysUtils;
type
EServiceException = class(Exception)
end;
implementation
end.