Files
zsa_qmk_firmware/lib/python/qmk/errors.py
T

13 lines
321 B
Python
Raw Normal View History

2019-07-15 12:14:27 -07:00
class NoSuchKeyboardError(Exception):
"""Raised when we can't find a keyboard/keymap directory.
"""
def __init__(self, message):
self.message = message
class CppError(Exception):
"""Raised when 'cpp' cannot process a file.
"""
def __init__(self, message):
self.message = message