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