@rafikidota/eidolon
Version:
Sometimes, the best way to solve your own problems is to help someone else.
12 lines • 554 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnauthorizedRpcException = void 0;
const microservices_1 = require("@nestjs/microservices");
const common_1 = require("@nestjs/common");
class UnauthorizedRpcException extends microservices_1.RpcException {
constructor(objectOrError, descriptionOrOptions) {
super(new common_1.UnauthorizedException(objectOrError, descriptionOrOptions));
}
}
exports.UnauthorizedRpcException = UnauthorizedRpcException;
//# sourceMappingURL=unauthorized.exception.js.map