mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
7 lines
173 B
Python
7 lines
173 B
Python
|
class NoSuchKeyboardError(Exception):
|
||
|
"""Raised when we can't find a keyboard/keymap directory.
|
||
|
"""
|
||
|
|
||
|
def __init__(self, message):
|
||
|
self.message = message
|