@@ -15,12 +15,10 @@ const ERROR_CODES = {
15
15
16
16
const ERROR_CODES_META = {
17
17
[ ERROR_CODES . WRONG_TX_USAGE ] : {
18
- message :
19
- "Usage of this.tx|this.context is not allowed if parallel event processing is enabled" ,
18
+ message : "Usage of this.tx|this.context is not allowed if parallel event processing is enabled" ,
20
19
} ,
21
20
[ ERROR_CODES . UNKNOWN_EVENT_TYPE ] : {
22
- message :
23
- "The event type and subType configuration is not configured! Maintain the combination in the config file." ,
21
+ message : "The event type and subType configuration is not configured! Maintain the combination in the config file." ,
24
22
} ,
25
23
[ ERROR_CODES . NOT_INITIALIZED ] : {
26
24
message :
@@ -33,16 +31,13 @@ const ERROR_CODES_META = {
33
31
message : "disabled reconnect, because we are not running on cloud foundry" ,
34
32
} ,
35
33
[ ERROR_CODES . MISSING_TABLE_DEFINITION ] : {
36
- message :
37
- "Could not find table in csn. Make sure the provided table name is correct and the table is known by CDS." ,
34
+ message : "Could not find table in csn. Make sure the provided table name is correct and the table is known by CDS." ,
38
35
} ,
39
36
[ ERROR_CODES . MISSING_ELEMENT_IN_TABLE ] : {
40
- message :
41
- "The provided table doesn't match the required structure. At least the following element is missing." ,
37
+ message : "The provided table doesn't match the required structure. At least the following element is missing." ,
42
38
} ,
43
39
[ ERROR_CODES . TYPE_MISMATCH_TABLE ] : {
44
- message :
45
- "At least one field in the provided table doesn't have the expected data type." ,
40
+ message : "At least one field in the provided table doesn't have the expected data type." ,
46
41
} ,
47
42
} ;
48
43
0 commit comments