(zodError: ZodError, target: ValidationTarget)
| 23 | public readonly zodError: ZodError; |
| 24 | |
| 25 | constructor(zodError: ZodError, target: ValidationTarget) { |
| 26 | super(validationTargetMessages[target]); |
| 27 | this.target = target; |
| 28 | this.zodError = zodError; |
| 29 | } |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected