delphimvcframework/samples/articles_crud_server/Commons.pas
Daniele Teti 14c4489f41 New Demos
2016-11-07 14:33:05 +01:00

16 lines
140 B
ObjectPascal

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