Error returns the error message.
()
| 41 | |
| 42 | // Error returns the error message. |
| 43 | func (e ErrParamNotFound) Error() string { |
| 44 | return "couldn't find '" + e.Name + "' in event parameters" |
| 45 | } |
| 46 | |
| 47 | // IsParamNotFound returns true if the error is ErrParamNotFound. |
| 48 | func IsParamNotFound(err error) bool { |
no outgoing calls