delphimvcframework/samples/articles_crud/Commons.pas
daniele.teti 0b6df41668 BUGFIXES
New sample: articles_crud
2014-06-27 13:30:39 +00:00

16 lines
140 B
ObjectPascal

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