UNPKG
@jiaxinjiang/nest-http
Version:
latest (1.0.0)
1.0.0
Http request component for NestJs.
@jiaxinjiang/nest-http
/
src
/
http.exception.ts
7 lines
(5 loc)
•
208 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{
ApiException
}
from
'@jiaxinjiang/nest-exception'
;
export
class
HttpRequestApiException
extends
ApiException
{
readonly
code
:
number
=
200101
;
readonly
msg
:
string
=
'http接口调用失败'
; }