You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
450 B
Go
22 lines
450 B
Go
2 years ago
|
package errorx
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
// Wrap returns an error that wraps err with given message.
|
||
|
func Wrap(err error, message string) error {
|
||
|
if err == nil {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
return fmt.Errorf("%s: %w", message, err)
|
||
|
}
|
||
|
|
||
|
// Wrapf returns an error that wraps err with given format and args.
|
||
|
func Wrapf(err error, format string, args ...interface{}) error {
|
||
|
if err == nil {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
return fmt.Errorf("%s: %w", fmt.Sprintf(format, args...), err)
|
||
|
}
|