Error returns the stirng representaiton of the error.
()
| 144 | |
| 145 | // Error returns the stirng representaiton of the error. |
| 146 | func (e *argError) Error() string { |
| 147 | return fmt.Sprintf("invalid argument: %s", e.name) |
| 148 | } |
| 149 | |
| 150 | // ArgName returns the name of the argument. |
| 151 | func (e *argError) ArgName() string { |