mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
24 lines
442 B
Python
Executable file
24 lines
442 B
Python
Executable file
#!/usr/bin/env python3
|
|
# -*-coding:UTF-8 -*
|
|
|
|
from pymisp import PyMISPError
|
|
|
|
class AILError(Exception):
|
|
def __init__(self, message):
|
|
super(AILError, self).__init__(message)
|
|
self.message = message
|
|
|
|
class UpdateInvestigationError(AILError):
|
|
pass
|
|
|
|
class NewTagError(AILError):
|
|
pass
|
|
|
|
class ModuleQueueError(AILError):
|
|
pass
|
|
|
|
class MISPConnectionError(AILError):
|
|
pass
|
|
|
|
class AILObjectUnknown(AILError):
|
|
pass
|