1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-02 10:02:14 +00:00

22 lines
384 B
Go
Raw Normal View History

package proxy
import (
"github.com/pkg/errors"
)
type errNoData struct{}
func (e errNoData) Error() string {
return "No data returned for query"
}
// IsErrNoData checks whether an error is due to a query returning empty data
func IsErrNoData(err error) bool {
_, ok := errors.Cause(err).(errNoData)
return ok
}
func ErrNoData() error {
return errors.Wrap(errNoData{}, "")
}