ansible-runner/ansible_runner/exceptions.py
2021-03-03 11:36:53 +08:00

12 lines
256 B
Python

class AnsibleRunnerException(Exception):
""" Generic Runner Error """
class ConfigurationError(AnsibleRunnerException):
""" Misconfiguration of Runner """
class CallbackError(AnsibleRunnerException):
""" Exception occurred in Callback """