ArgumentError is returned when received message contains invalid arguments.
| 28 | |
| 29 | // ArgumentError is returned when received message contains invalid arguments. |
| 30 | type ArgumentError struct { |
| 31 | s string |
| 32 | } |
| 33 | |
| 34 | func (e ArgumentError) Error() string { |
| 35 | return e.s |
nothing calls this directly
no outgoing calls
no test coverage detected