Files
jumpserver/apps/ops/ansible/exception.py
2026-06-16 16:34:40 +08:00

10 lines
185 B
Python

__all__ = ['CommandInBlackListException', 'AnsibleDockerImageNotFound']
class CommandInBlackListException(Exception):
pass
class AnsibleDockerImageNotFound(Exception):
pass