mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-28 19:34:53 +00:00
11 lines
102 B
Python
11 lines
102 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
__all__ = [
|
|
'AnsibleError'
|
|
]
|
|
|
|
|
|
class AnsibleError(Exception):
|
|
pass
|