diff --git a/libraries/entropy/exceptions.py b/libraries/entropy/exceptions.py index 6240c9582..15a67afce 100644 --- a/libraries/entropy/exceptions.py +++ b/libraries/entropy/exceptions.py @@ -32,6 +32,9 @@ class EntropyException(Exception): return self.value return repr(self.value) +class SecurityError(EntropyException): + """ Security related error """ + class CorruptionError(EntropyException): """Corruption indication"""