| 137 | } |
| 138 | |
| 139 | type ParameterError struct { |
| 140 | Parameter string |
| 141 | Reason string |
| 142 | } |
| 143 | |
| 144 | func (pe *ParameterError) Error() string { |
| 145 | return fmt.Sprintf("error in parameter '%s': %s", pe.Parameter, pe.Reason) |
nothing calls this directly
no outgoing calls
no test coverage detected