mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			321 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			321 B
		
	
	
	
		
			Python
		
	
	
	
	
	
class NoSuchKeyboardError(Exception):
 | 
						|
    """Raised when we can't find a keyboard/keymap directory.
 | 
						|
    """
 | 
						|
    def __init__(self, message):
 | 
						|
        self.message = message
 | 
						|
 | 
						|
 | 
						|
class CppError(Exception):
 | 
						|
    """Raised when 'cpp' cannot process a file.
 | 
						|
    """
 | 
						|
    def __init__(self, message):
 | 
						|
        self.message = message
 |