1 // Package neterr defines interfaces for network error handling. 2 package neterr 3 4 // TimeoutError is compatible with net.Error's Timeout() method. 5 type TimeoutError interface { 6 Timeout() bool 7 } 8