mirror of
https://github.com/stjornleysi/telegram_glpi.git
synced 2025-12-03 18:43:08 +00:00
9 lines
243 B
JavaScript
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; |