@nestjs/graphql
Version:
Nest - modern, fast, powerful node.js web framework (@graphql)
10 lines (9 loc) • 612 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultValuesConflictError = void 0;
class DefaultValuesConflictError extends Error {
constructor(hostTypeName, fieldName, decoratorDefaultVal, initializerDefaultVal) {
super(`Error caused by mis-matched default values for the "${fieldName}" field of "${hostTypeName}". The default value from the decorator "${decoratorDefaultVal}" is not equal to the property initializer value "${initializerDefaultVal}". Ensure that these values match.`);
}
}
exports.DefaultValuesConflictError = DefaultValuesConflictError;
;