You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Contentstack.Core/Internals/ErrorMessages.cs
+35Lines changed: 35 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ internal static class ErrorMessages
18
18
19
19
// Entry related errors
20
20
publicconststringEntryProcessingError="An error occurred while processing the entry. {0}";
21
+
publicconststringEntryUidRequired="Please set entry uid.";
22
+
publicconststringEntryNotFoundInCache="Entry is not present in cache";
21
23
22
24
// Global Field related errors
23
25
publicconststringGlobalFieldIdNullError="GlobalFieldId required. This value cannot be null or empty, define it in your configuration.";
@@ -27,6 +29,39 @@ internal static class ErrorMessages
27
29
// Live Preview related errors
28
30
publicconststringLivePreviewTokenMissing="Live Preview token missing. Add either a PreviewToken or a ManagementToken in the LivePreviewConfig.";
29
31
32
+
// Client Request related errors
33
+
publicconststringContentstackClientRequestError="Contentstack client request failed. Check your network settings or request parameters and try again: {0}";
34
+
publicconststringContentstackSyncRequestError="An error occurred while processing the Contentstack client request: {0}";
35
+
36
+
// Taxonomy related errors
37
+
publicconststringTaxonomyProcessingError="An error occurred while processing the taxonomy operation: {0}";
38
+
39
+
// Content Type related errors
40
+
publicconststringContentTypeProcessingError="Content type processing failed. Verify the schema and ensure all required fields are configured.";
41
+
42
+
// Authentication and Configuration errors
43
+
publicconststringStackApiKeyRequired="Stack api key can not be null.";
44
+
publicconststringAccessTokenRequired="Access token can not be null.";
45
+
publicconststringEnvironmentRequired="Environment can not be null.";
46
+
publicconststringAuthenticationNotPresent="Authentication Not present.";
47
+
publicconststringContentTypeNameRequired="Please set contentType name.";
48
+
49
+
// JSON and Parsing errors
50
+
publicconststringInvalidJsonFormat="Please provide valid JSON.";
0 commit comments