constAuthorizationError = require( './authorization-error' );
classUnauthorizedErrorextendsAuthorizationError {
constructor() {
super(
'UNAUTHORIZED_ERROR', 'The current user does not have access to the requested resource.'
);
}
}
module.exports = UnauthorizedError;