ValidationErrorf takes a message and formatting options and creates a ValidationError
(msg string, args ...any)
| 26 | |
| 27 | // ValidationErrorf takes a message and formatting options and creates a ValidationError |
| 28 | func ValidationErrorf(msg string, args ...any) ValidationError { |
| 29 | return ValidationError(fmt.Sprintf(msg, args...)) |
| 30 | } |
no test coverage detected
searching dependent graphs…