mirror of
https://github.com/stjornleysi/telegram_glpi.git
synced 2025-12-03 10:33:11 +00:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
class SessionNotFoundError extends Error {
|
|
constructor(message) {
|
|
super(message);
|
|
this.name = this.constructor.name;
|
|
Error.captureStackTrace(this, this.constructor);
|
|
}
|
|
}
|
|
|
|
module.exports = SessionNotFoundError;
|