TooManyArgError records a too many arguments error. It is used by DSL functions that take dynamic arguments.
()
| 135 | // TooManyArgError records a too many arguments error. It is used by DSL |
| 136 | // functions that take dynamic arguments. |
| 137 | func TooManyArgError() { |
| 138 | ReportError("too many arguments given to %s", caller()) |
| 139 | } |
| 140 | |
| 141 | // ValidationErrors records the errors encountered when running Validate. |
| 142 | type ValidationErrors struct { |
no test coverage detected