()
| 14 | type silentError struct{ inner error } |
| 15 | |
| 16 | func (s silentError) Error() string { return "" } |
| 17 | func (s silentError) Unwrap() error { return s.inner } |
| 18 | func (silentError) Is(target error) bool { |
| 19 | _, ok := target.(silentError) |
no outgoing calls