"""Audit Logger Exceptions.""" class LoggingFailureException(Exception): """Logging failure.""" def __init__(self, message): """Create exception.""" super().__init__("Logging failed with message: " + message)