UNPKG
node-web-mvc
Version:
latest (3.3.30)
3.3.30
3.3.29
3.3.28
3.3.27
3.3.26
3.3.25
3.3.24
3.3.23
3.3.22
3.3.21
3.3.20
3.3.19
3.3.17
3.3.16
3.3.15
3.3.14
3.3.13
3.3.12
3.3.11
3.3.10
3.3.9
3.3.8
3.3.7
3.3.6
3.3.5
3.3.3
3.3.2
3.3.1
3.3.0
3.2.9
3.2.8
3.2.7
3.2.6
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.11
3.1.10
3.1.9
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.20.2
2.20.1
2.20.0
2.19.1
2.19.0
2.18.1
2.18.0
2.17.0
2.16.3
2.16.2
2.16.1
2.16.0
2.15.0
2.14.4
2.14.3
2.14.2
2.14.1
2.14.0
2.13.9
2.13.8
2.13.7
2.13.6
2.13.5
2.13.4
2.13.3
2.12.3
2.12.2
2.12.1
2.10.1
2.10.0
2.9.3
2.9.2
2.8.31
2.8.30
2.8.29
2.8.28
2.8.27
2.8.26
2.8.25
2.8.24
2.8.23
2.8.22
2.8.21
2.8.20
2.8.19
2.8.18
2.8.17
2.8.16
2.8.15
2.8.14
2.8.13
2.8.12
2.8.11
2.8.9
2.8.8
2.8.6
2.8.5
2.8.4
2.8.3
2.8.2
2.8.1
2.8.0
2.7.3
2.7.2
2.7.1
2.7.0
2.6.8
2.6.7
2.6.6
2.6.5
2.6.4
2.6.3
2.6.2
2.6.1
2.6.0
2.5.0
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.2
2.3.1
2.3.0
2.2.30
2.2.29
2.2.28
2.2.27
2.2.26
2.2.25
2.2.23
2.2.22
2.2.21
2.2.20
2.2.19
2.2.18
2.2.17
2.2.16
2.2.15
2.2.14
2.2.13
2.2.12
2.2.11
2.2.10
2.2.9
2.2.8
2.2.7
2.2.6
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.2
2.1.0
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
node spring mvc
github.com/Beven91/node-mvc
Beven91/node-mvc
node-web-mvc
/
dist
/
errors
/
HttpStatusError.d.ts
8 lines
(7 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
HttpStatus
from
'../servlets/http/HttpStatus'
;
import
Exception
from
'./Exception'
;
export
default
class
HttpStatusError
extends
Exception
{
readonly
status
:
HttpStatus
;
readonly
path
:
string
;
constructor
(
status
:
HttpStatus
,
path
:
string
); }