summaryrefslogtreecommitdiff
path: root/runtime/permissions/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/permissions/lib.rs')
-rw-r--r--runtime/permissions/lib.rs7
1 files changed, 2 insertions, 5 deletions
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)]