rpc-go/client/error.go

21 lines
289 B
Go
Raw Normal View History

2018-04-11 14:16:41 +00:00
package client
func newError(method string, params []interface{}, err error) *Error {
return &Error{
Method: method,
Params: params,
Err: err,
}
}
type Error struct {
Method string
Params []interface{}
Err error
}
func (e *Error) Error() string {
return e.Err.Error()
}