tendermint/common/errors.go

11 lines
142 B
Go
Raw Normal View History

2014-08-10 16:35:08 -07:00
package common
import (
"errors"
"fmt"
)
func Errorf(s string, args ...interface{}) error {
return errors.New(fmt.Sprintf(s, args...))
}