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