(errStr string, path Path, index int)
| 121 | } |
| 122 | |
| 123 | func MakeSetTypeError(errStr string, path Path, index int) error { |
| 124 | return SetTypeError{fmt.Sprintf("%s at index:%d (%s)", errStr, index, FormatPath(path))} |
| 125 | } |
| 126 | |
| 127 | type BudgetError struct { |
| 128 | Err string |
no test coverage detected