@episodehunter/thetvdb
Version:
Helper lib for thetvdb api
18 lines • 467 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Timeout = exports.NotFound = void 0;
class NotFound extends Error {
constructor(msg) {
super(msg);
this.name = this.constructor.name;
}
}
exports.NotFound = NotFound;
class Timeout extends Error {
constructor(msg) {
super(msg);
this.name = this.constructor.name;
}
}
exports.Timeout = Timeout;
//# sourceMappingURL=custom-erros.js.map