| 66 | var ErrInvalidURNPrefix = URNPrefixError{} |
| 67 | |
| 68 | type invalidLengthError struct{ len int } |
| 69 | |
| 70 | func (err invalidLengthError) Error() string { |
| 71 | return fmt.Sprintf("invalid UUID length: %d", err.len) |
nothing calls this directly
no outgoing calls
no test coverage detected