mirror of
https://github.com/stjornleysi/telegram_glpi.git
synced 2026-01-20 05:50:40 +00:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
class FileNotReadableError extends Error {
|
|
constructor(message) {
|
|
super(message);
|
|
this.name = this.constructor.name;
|
|
Error.captureStackTrace(this, this.constructor);
|
|
}
|
|
}
|
|
|
|
module.exports = FileNotReadableError;
|