QMK/lib/python/qmk/errors.py

6 lines
172 B
Python
Raw Normal View History

2020-03-23 10:48:11 +01:00
class NoSuchKeyboardError(Exception):
"""Raised when we can't find a keyboard/keymap directory.
"""
def __init__(self, message):
self.message = message