Add multi error

This commit is contained in:
世界 2022-07-06 20:48:55 +08:00
parent f00396c60e
commit f8356c256f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 141 additions and 102 deletions

View file

@ -0,0 +1,23 @@
package exceptions
import (
"errors"
"os"
)
type TimeoutError interface {
Timeout() bool
}
func IsTimeout(err error) bool {
if unwrapErr := errors.Unwrap(err); unwrapErr != nil {
err = unwrapErr
}
if ne, ok := err.(*os.SyscallError); ok {
err = ne.Err
}
if timeoutErr, isTimeoutErr := err.(TimeoutError); isTimeoutErr {
return timeoutErr.Timeout()
}
return false
}