From 7bfcb4dd10d31f5f9566c90a28449c0951f3a48e Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 10 Sep 2024 20:12:24 +0200 Subject: feat(cli): use NotCapable error for permission errors (#25431) Closes #7394 --------- Co-authored-by: snek --- runtime/permissions/lib.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'runtime/permissions') diff --git a/runtime/permissions/lib.rs b/runtime/permissions/lib.rs index c5cfbff70..36750ae38 100644 --- a/runtime/permissions/lib.rs +++ b/runtime/permissions/lib.rs @@ -144,7 +144,7 @@ impl PermissionState { name ) }; - custom_error("PermissionDenied", msg) + custom_error("NotCapable", msg) } /// Check the permission state. bool is whether a prompt was issued. @@ -1999,10 +1999,7 @@ fn parse_run_list( } fn escalation_error() -> AnyError { - custom_error( - "PermissionDenied", - "Can't escalate parent thread permissions", - ) + custom_error("NotCapable", "Can't escalate parent thread permissions") } #[derive(Debug, Eq, PartialEq)] -- cgit v1.2.3