mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
16 lines
315 B
Python
16 lines
315 B
Python
|
#!/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
|