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