Files
telegram_glpi/node_modules/glpi-api/errors/InvalidHTTPMethodError.js
Александр Тороп 038bf44010 init
2024-03-30 18:27:37 +03:00

10 lines
239 B
JavaScript

class InvalidHTTPMethodError extends Error {
constructor(message) {
super(message);
this.name = this.constructor.name;
Error.captureStackTrace(this, this.constructor);
}
}
module.exports = InvalidHTTPMethodError;