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

9 lines
229 B
JavaScript

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