From 5f53a683d141d290b0de1e5d239d9dea05a3bcf6 Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Wed, 9 Feb 2022 13:35:42 +0300 Subject: [PATCH] [#190] status: add Object.OBJECT_NOT_FOUND code `OBJECT_` prefix is needed because of possible conflicts with other `NOT_FOUND` codes declared in the same file. Signed-off-by: Evgenii Stratonikov --- status/types.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/status/types.proto b/status/types.proto index cc3f2b7..80aaf0f 100644 --- a/status/types.proto +++ b/status/types.proto @@ -97,4 +97,7 @@ enum Object { // Details: // - [**0**] Human-readable description. ACCESS_DENIED = 0; + // [**2049**] Object not found. + OBJECT_NOT_FOUND = 1; +} } \ No newline at end of file