mirror of
https://github.com/docker/compose.git
synced 2026-08-28 04:18:05 +00:00
Implement ErrParsingFailed error
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
This commit is contained in:
parent
bdd987f246
commit
b68c019e93
3 changed files with 15 additions and 9 deletions
|
|
@ -45,6 +45,8 @@ var (
|
|||
// ErrNotImplemented is returned when a backend doesn't implement
|
||||
// an action
|
||||
ErrNotImplemented = errors.New("not implemented")
|
||||
// ErrParsingFailed
|
||||
ErrParsingFailed = errors.New("parsing failed")
|
||||
)
|
||||
|
||||
// IsNotFoundError returns true if the unwrapped error is ErrNotFound
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue