tendermint/common/errors.go
2014-08-30 04:17:10 -07:00

11 lines
142 B
Go

package common
import (
"errors"
"fmt"
)
func Errorf(s string, args ...interface{}) error {
return errors.New(fmt.Sprintf(s, args...))
}