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

9 lines
243 B
JavaScript

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