(format string, args ...any)
| 10 | ) |
| 11 | |
| 12 | func markdownValidationError(format string, args ...any) *errs.ValidationError { |
| 13 | return errs.NewValidationError(errs.SubtypeInvalidArgument, format, args...) |
| 14 | } |
| 15 | |
| 16 | func markdownValidationParamError(param, format string, args ...any) *errs.ValidationError { |
| 17 | return markdownValidationError(format, args...).WithParam(param) |