sing/common/exceptions/timeout.go
2023-03-23 13:59:25 +08:00

12 lines
217 B
Go

package exceptions
type TimeoutError interface {
Timeout() bool
}
func IsTimeout(err error) bool {
if timeoutErr, isTimeout := Cast[TimeoutError](err); isTimeout {
return timeoutErr.Timeout()
}
return false
}