(target error)
| 72 | } |
| 73 | |
| 74 | func (e invalidLengthError) Is(target error) bool { |
| 75 | _, ok := target.(invalidLengthError) |
| 76 | return ok |
| 77 | } |
| 78 | |
| 79 | var ErrInvalidLength = invalidLengthError{} |
| 80 |
nothing calls this directly
no outgoing calls
no test coverage detected