delphimvcframework/samples/articles_crud_server/Commons.pas

16 lines
140 B
ObjectPascal
Raw Normal View History

2014-06-27 15:30:39 +02:00
unit Commons;
interface
uses
System.SysUtils;
type
EServiceException = class(Exception)
end;
implementation
end.