mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
1379ef705a
AIL is a modular framework to analyse potential information leak from unstructured data source like pastes from Past ebin or similar services. AIL framework is flexible and can be extended to support other functionalities to mine sen sitive information
13 lines
222 B
Python
13 lines
222 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"Core exceptions raised by the PubSub module"
|
|
|
|
class PubSubError(Exception):
|
|
pass
|
|
|
|
class InvalidErrorLevel(PubSubError):
|
|
pass
|
|
|
|
class NoChannelError(PubSubError):
|
|
pass
|