diff options
Diffstat (limited to 'runtime/js/01_errors.js')
-rw-r--r-- | runtime/js/01_errors.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/runtime/js/01_errors.js b/runtime/js/01_errors.js index bfcb540e2..ea567a5d0 100644 --- a/runtime/js/01_errors.js +++ b/runtime/js/01_errors.js @@ -1,7 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { core, primordials } from "ext:core/mod.js"; -const { BadResource, Interrupted, PermissionDenied } = core; +const { BadResource, Interrupted, NotCapable } = core; const { Error } = primordials; class NotFound extends Error { @@ -116,6 +116,13 @@ class Busy extends Error { } } +class PermissionDenied extends Error { + constructor(msg) { + super(msg); + this.name = "PermissionDenied"; + } +} + class NotSupported extends Error { constructor(msg) { super(msg); @@ -176,6 +183,7 @@ const errors = { IsADirectory, NetworkUnreachable, NotADirectory, + NotCapable, }; export { errors }; |