mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-07-21 09:38:31 +02:00
11 lines
314 B
JavaScript
11 lines
314 B
JavaScript
function UnauthorizedError (code, error) {
|
|
Error.call(this, error.message);
|
|
this.message = error.message;
|
|
this.code = code;
|
|
this.inner = error;
|
|
}
|
|
|
|
UnauthorizedError.prototype = Object.create(Error.prototype);
|
|
UnauthorizedError.prototype.constructor = UnauthorizedError;
|
|
|
|
module.exports = UnauthorizedError; |