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