Source code for replay_wizard.capturing.errors
"""
Capturing Errors
"""
[docs]
class UnknownKeyError(Exception):
"""
Input key was unknown (pynput return None)
"""
def __str__(self):
"""
Exception to str
"""
return 'Key was unknown (None value)'