mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
moved to exceptions for basic skip/fails
better handling of checkmode and async fix test to follow new flow control
This commit is contained in:
@@ -204,3 +204,10 @@ class AnsibleUndefinedVariable(AnsibleRuntimeError):
|
||||
class AnsibleFileNotFound(AnsibleRuntimeError):
|
||||
''' a file missing failure '''
|
||||
pass
|
||||
|
||||
class AnsibleActionSkip(AnsibleRuntimeError):
|
||||
''' an action runtime skip'''
|
||||
pass
|
||||
class AnsibleActionFail(AnsibleRuntimeError):
|
||||
''' an action runtime failure'''
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user