mirror of
https://github.com/octoleo/restic.git
synced 2024-12-22 10:58:55 +00:00
errors: Make Cause() unwrap *url.Error
This commit is contained in:
parent
685ce719ad
commit
8e812b7ac0
@ -1,11 +1,10 @@
|
|||||||
package errors
|
package errors
|
||||||
|
|
||||||
import "github.com/pkg/errors"
|
import (
|
||||||
|
"net/url"
|
||||||
|
|
||||||
// Cause returns the cause of an error.
|
"github.com/pkg/errors"
|
||||||
func Cause(err error) error {
|
)
|
||||||
return errors.Cause(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// New creates a new error based on message. Wrapped so that this package does
|
// New creates a new error based on message. Wrapped so that this package does
|
||||||
// not appear in the stack trace.
|
// not appear in the stack trace.
|
||||||
@ -22,3 +21,29 @@ var Wrap = errors.Wrap
|
|||||||
// Wrapf returns an error annotating err with the format specifier. If err is
|
// Wrapf returns an error annotating err with the format specifier. If err is
|
||||||
// nil, Wrapf returns nil.
|
// nil, Wrapf returns nil.
|
||||||
var Wrapf = errors.Wrapf
|
var Wrapf = errors.Wrapf
|
||||||
|
|
||||||
|
// Cause returns the cause of an error. It will also unwrap certain errors,
|
||||||
|
// e.g. *url.Error returned by the net/http client.
|
||||||
|
func Cause(err error) error {
|
||||||
|
type Causer interface {
|
||||||
|
Cause() error
|
||||||
|
}
|
||||||
|
|
||||||
|
for {
|
||||||
|
// unwrap *url.Error
|
||||||
|
if urlErr, ok := err.(*url.Error); ok {
|
||||||
|
err = urlErr.Err
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// if err is a Causer, return the cause for this error.
|
||||||
|
if c, ok := err.(Causer); ok {
|
||||||
|
err = c.Cause()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user