-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy patherror.js
More file actions
23 lines (21 loc) · 899 Bytes
/
error.js
File metadata and controls
23 lines (21 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* Your installation or use of this SugarCRM file is subject to the applicable
* terms available at
* http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/.
* If you do not agree to all of the applicable terms or do not have the
* authority to bind the entity as an authorized representative, then do not
* install or use this SugarCRM file.
*
* Copyright (C) SugarCRM Inc. All rights reserved.
*/
module.exports = {
/**
* Error messages
*/
ERROR_CANNOT_CREATE_CASE: 'Unable to create Case in SugarCRM',
ERROR_NOTE_CREATE_FAILED: 'Unable to link Note to Case in SugarCRM',
TPL_CANNOT_MATCH_RECORD: 'Unable to match exactly one ${} record',
TPL_MISSING_REQUIRED_PARAMETERS: 'Missing required parameters: ${}',
TPL_MULTIPLE_RECORDS_MATCHED: 'Matched multiple ${} records',
TPL_NO_RECORDS_MATCHED: 'Unable to match any ${} records'
};