errors.py 203 B

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