keyboard stuff
1class NoSuchKeyboardError(Exception):
2 """Raised when we can't find a keyboard/keymap directory.
3 """
4 def __init__(self, message):
5 self.message = message
6
7
8class CppError(Exception):
9 """Raised when 'cpp' cannot process a file.
10 """
11 def __init__(self, message):
12 self.message = message