logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

errors.py (321B)


  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