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