mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
18 lines
360 B
Python
Executable file
18 lines
360 B
Python
Executable file
#!/usr/bin/env python3
|
|
# -*-coding:UTF-8 -*
|
|
|
|
class AIL_ERROR(Exception):
|
|
"""docstring for AIL_ERROR."""
|
|
|
|
def __init__(self, message):
|
|
super(AIL_ERROR, self).__init__(message)
|
|
self.message = message
|
|
|
|
class UpdateInvestigationError(AIL_ERROR):
|
|
pass
|
|
|
|
class NewTagError(AIL_ERROR):
|
|
pass
|
|
|
|
class ModuleQueueError(AIL_ERROR):
|
|
pass
|