summaryrefslogtreecommitdiff
path: root/lib/python/qmk/errors.py
blob: 4a8a91556b80878786a416394cfaf4b15df674f2 (plain)
1
2
3
4
5
class NoSuchKeyboardError(Exception):
    """Raised when we can't find a keyboard/keymap directory.
    """
    def __init__(self, message):
        self.message = message