UNPKG

487 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.InvalidGrpcServiceException = void 0;
4const runtime_exception_1 = require("@nestjs/core/errors/exceptions/runtime.exception");
5/**
6 * @publicApi
7 */
8class InvalidGrpcServiceException extends runtime_exception_1.RuntimeException {
9 constructor(name) {
10 super(`The invalid gRPC service (service "${name}" not found)`);
11 }
12}
13exports.InvalidGrpcServiceException = InvalidGrpcServiceException;