@tunnel-cast/nestjs
Version:
## About This is a Tunnel-Cast - NestJS integration package, wrap the `cast` application into the `NestJS` building blocks.
12 lines • 428 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidCastException = void 0;
const common_1 = require("@nestjs/common");
class InvalidCastException extends common_1.HttpException {
constructor(error) {
super(error, common_1.HttpStatus.BAD_REQUEST);
this.originError = error;
}
}
exports.InvalidCastException = InvalidCastException;
//# sourceMappingURL=index.js.map