errors.py 172 B

12345
  1. class NoSuchKeyboardError(Exception):
  2. """Raised when we can't find a keyboard/keymap directory.
  3. """
  4. def __init__(self, message):
  5. self.message = message