UNPKG
imob-sdk
Version:
latest (1.0.31-LTS)
1.0.31-LTS
1.0.3
1.0.3-realease
1.0.3-LTS
1.0.2
1.0.2-LTS
1.0.1
1.0.0
SDK para acessar a API do Imóvel Periciado.
github.com/SorPuti/imob-sdk
SorPuti/imob-sdk
imob-sdk
/
src
/
errors
/
unAuthorizedError.js
11 lines
(9 loc)
•
306 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
class
unAuthorizedError
extends
Error
{
constructor
(message, statusCode) {
super
(message);
this
.name =
this
.
constructor
.name;
this
.statusCode = statusCode ||
500
; Error.captureStackTrace(
this
,
this
.
constructor
); } } module.exports = unAuthorizedError;