| 13 | |
| 14 | type ( |
| 15 | TaskfileDecodeError struct { |
| 16 | Message string |
| 17 | Location string |
| 18 | Line int |
| 19 | Column int |
| 20 | Tag string |
| 21 | Snippet string |
| 22 | Err error |
| 23 | } |
| 24 | ) |
| 25 | |
| 26 | func NewTaskfileDecodeError(err error, node *yaml.Node) *TaskfileDecodeError { |
nothing calls this directly
no outgoing calls
no test coverage detected