mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add back AnsibleFileNotFound ( used in connection plugins )
This commit is contained in:
parent
0345b675f8
commit
8592ffb573
1 changed files with 4 additions and 0 deletions
|
@ -167,3 +167,7 @@ class AnsibleFilterError(AnsibleRuntimeError):
|
||||||
class AnsibleUndefinedVariable(AnsibleRuntimeError):
|
class AnsibleUndefinedVariable(AnsibleRuntimeError):
|
||||||
''' a templating failure '''
|
''' a templating failure '''
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
class AnsibleFileNotFound(AnsibleRuntimeError):
|
||||||
|
''' a file missing failure '''
|
||||||
|
pass
|
||||||
|
|
Loading…
Reference in a new issue