mirror of
https://github.com/stjornleysi/telegram_glpi.git
synced 2026-01-20 22:10:39 +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;
|