UNPKG

payload

Version:

Node, React, Headless CMS and Application Framework built on Next.js

8 lines (7 loc) 303 B
import { APIError } from './APIError.js'; export class DuplicateFieldName extends APIError { constructor(fieldName){ super(`A field with the name '${fieldName}' was found multiple times on the same level. Field names must be unique.`); } } //# sourceMappingURL=DuplicateFieldName.js.map