@intocode-io/fireliff-cli
Version:
Command line interface for building LIFF app on Firebase
18 lines (14 loc) • 344 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ThingsError = void 0;
class ThingsError extends Error {
constructor(message, response) {
super(message);
this.name = 'ThingsError';
this.response = response;
}
}
exports.ThingsError = ThingsError;
//# sourceMappingURL=things-error.js.map