diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-06-29 01:46:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 01:46:16 +0200 |
commit | 0434e041778cb3803de901b841f18b8fd8cc2a67 (patch) | |
tree | 0c89ce9c09e8a53c20fef5a5053ffdd4af382400 /runtime/js/01_errors.js | |
parent | 673cdd714921124fae8ecd3c3a405e37a8ece404 (diff) |
feat: add more Deno.errors classes (#19514)
This commit adds following new error classes:
- `Deno.errors.NotADirectory`
- `Deno.errors.FilesystemLoop`
- `Deno.errors.IsADirectory`
- `Deno.errors.NetworkUnreachable`
Closes https://github.com/denoland/deno/issues/19408
Diffstat (limited to 'runtime/js/01_errors.js')
-rw-r--r-- | runtime/js/01_errors.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/runtime/js/01_errors.js b/runtime/js/01_errors.js index 8288e3ce9..0c54f6581 100644 --- a/runtime/js/01_errors.js +++ b/runtime/js/01_errors.js @@ -131,6 +131,34 @@ class NotSupported extends Error { } } +class FilesystemLoop extends Error { + constructor(msg) { + super(msg); + this.name = "FilesystemLoop"; + } +} + +class IsADirectory extends Error { + constructor(msg) { + super(msg); + this.name = "IsADirectory"; + } +} + +class NetworkUnreachable extends Error { + constructor(msg) { + super(msg); + this.name = "NetworkUnreachable"; + } +} + +class NotADirectory extends Error { + constructor(msg) { + super(msg); + this.name = "NotADirectory"; + } +} + const errors = { NotFound, PermissionDenied, @@ -152,6 +180,10 @@ const errors = { Http, Busy, NotSupported, + FilesystemLoop, + IsADirectory, + NetworkUnreachable, + NotADirectory, }; export { errors }; |