Merge pull request #10705 from mscherer/add_another_missing_error

Add another error, who seems to be all over the place
This commit is contained in:
Brian Coca 2015-04-14 16:02:40 -04:00
commit 79e8e26412

View file

@ -171,3 +171,7 @@ class AnsibleUndefinedVariable(AnsibleRuntimeError):
class AnsibleFileNotFound(AnsibleRuntimeError): class AnsibleFileNotFound(AnsibleRuntimeError):
''' a file missing failure ''' ''' a file missing failure '''
pass pass
class AnsibleParserError(AnsibleRuntimeError):
''' a parser error '''
pass