qmk-firmware/lib/python/qmk/errors.py

6 lines
172 B
Python

class NoSuchKeyboardError(Exception):
"""Raised when we can't find a keyboard/keymap directory.
"""
def __init__(self, message):
self.message = message