mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
16 lines
140 B
ObjectPascal
16 lines
140 B
ObjectPascal
unit Commons;
|
|
|
|
interface
|
|
|
|
uses
|
|
System.SysUtils;
|
|
|
|
type
|
|
EServiceException = class(Exception)
|
|
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|