/ src / errors / SchemaError.ts
SchemaError.ts
1  export class SchemaError extends Error {
2    public constructor(public model: string, public field: string, message: string) {
3      super(`${model}::${field} -> ${message}`);
4      this.name = "SchemaError";
5    }
6  }