forked from jbsolucoes/ceosmw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathceosmessages.pas
35 lines (25 loc) · 1.26 KB
/
ceosmessages.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{*****************************************************************}
{ ceosmessages is part of Ceos middleware/n-tier JSONRPC components }
{ }
{ Beta version }
{ }
{ This library is distributed in the hope that it will be useful, }
{ but WITHOUT ANY WARRANTY; without even the implied warranty of }
{ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. }
{ }
{ by Jose Benedito - [email protected] }
{ www.jbsolucoes.net }
{*****************************************************************}
unit ceosmessages;
{$mode objfpc}{$H+}
interface
resourcestring
ERROR_INTERNAL_ERROR = 'Internal error.';
ERROR_REQUEST_ERROR = 'Request error.';
ERROR_UNKNOW_FUNCTION = 'Unknown function.';
ERROR_REQUEST_CONTENT = 'Request Content Error.';
ERROR_INVALID_CONTENT = 'Invalid Content.';
ERROR_INVALID_QUERY = 'Invalid Query.';
MSG_NO_RESPONSE = 'No response assigned in server.';
implementation
end.