errors.py 321 B

123456789101112
  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
  6. class CppError(Exception):
  7. """Raised when 'cpp' cannot process a file.
  8. """
  9. def __init__(self, message):
  10. self.message = message