18 lines
404 B
Go
18 lines
404 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package errs2
|
|
|
|
import (
|
|
"github.com/zeebo/errs"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
// IsRPC checks if err contains an RPC error with the given status code.
|
|
func IsRPC(err error, code codes.Code) bool {
|
|
return errs.IsFunc(err, func(err error) bool {
|
|
return status.Code(err) == code
|
|
})
|
|
}
|