deno.land / x / deno@v1.28.2 / runtime / js / 01_errors.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license."use strict";
((window) => { const core = window.Deno.core; const { Error } = window.__bootstrap.primordials; const { BadResource, Interrupted } = core;
class NotFound extends Error { constructor(msg) { super(msg); this.name = "NotFound"; } }
class PermissionDenied extends Error { constructor(msg) { super(msg); this.name = "PermissionDenied"; } }
class ConnectionRefused extends Error { constructor(msg) { super(msg); this.name = "ConnectionRefused"; } }
class ConnectionReset extends Error { constructor(msg) { super(msg); this.name = "ConnectionReset"; } }
class ConnectionAborted extends Error { constructor(msg) { super(msg); this.name = "ConnectionAborted"; } }
class NotConnected extends Error { constructor(msg) { super(msg); this.name = "NotConnected"; } }
class AddrInUse extends Error { constructor(msg) { super(msg); this.name = "AddrInUse"; } }
class AddrNotAvailable extends Error { constructor(msg) { super(msg); this.name = "AddrNotAvailable"; } }
class BrokenPipe extends Error { constructor(msg) { super(msg); this.name = "BrokenPipe"; } }
class AlreadyExists extends Error { constructor(msg) { super(msg); this.name = "AlreadyExists"; } }
class InvalidData extends Error { constructor(msg) { super(msg); this.name = "InvalidData"; } }
class TimedOut extends Error { constructor(msg) { super(msg); this.name = "TimedOut"; } }
class WriteZero extends Error { constructor(msg) { super(msg); this.name = "WriteZero"; } }
class UnexpectedEof extends Error { constructor(msg) { super(msg); this.name = "UnexpectedEof"; } }
class Http extends Error { constructor(msg) { super(msg); this.name = "Http"; } }
class Busy extends Error { constructor(msg) { super(msg); this.name = "Busy"; } }
class NotSupported extends Error { constructor(msg) { super(msg); this.name = "NotSupported"; } }
const errors = { NotFound, PermissionDenied, ConnectionRefused, ConnectionReset, ConnectionAborted, NotConnected, AddrInUse, AddrNotAvailable, BrokenPipe, AlreadyExists, InvalidData, TimedOut, Interrupted, WriteZero, UnexpectedEof, BadResource, Http, Busy, NotSupported, };
window.__bootstrap.errors = { errors, };})(this);
deno

Version Info

Tagged at
a year ago