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

9 lines
233 B
JavaScript

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