()
| 68 | type invalidLengthError struct{ len int } |
| 69 | |
| 70 | func (err invalidLengthError) Error() string { |
| 71 | return fmt.Sprintf("invalid UUID length: %d", err.len) |
| 72 | } |
| 73 | |
| 74 | func (e invalidLengthError) Is(target error) bool { |
| 75 | _, ok := target.(invalidLengthError) |
nothing calls this directly
no outgoing calls
no test coverage detected