rpc-go/client/error.go
crusader 46b23c5217 ing
2018-04-11 23:16:41 +09:00

21 lines
289 B
Go

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()
}