We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78986c6 commit 225d8ebCopy full SHA for 225d8eb
apis/entservices_errorcodes.h
@@ -3,7 +3,11 @@
3
#pragma once
4
#include <stdio.h>
5
6
-// 1. The single source of truth: a list of all errors.
+// 1. A list of Plugin specific errors.
7
+// As per https://www.jsonrpc.org/specification#error_object, implementation defined error range is -32000 to -32099
8
+// So, we have room for only 100 errors across all entertainment services in RDK.
9
+// Please define error code in reusable form (or generic form), wherever possible.
10
+// Always consult Thunder Framework defined errors before defining a new error.
11
#define ERROR_LIST \
12
X(ERROR_INVALID_DEVICENAME, "Invalid device name") \
13
X(ERROR_INVALID_MOUNTPOINT, "Invalid mount path") \
0 commit comments