forked from ungleich-public/cdist
		
	+MissingEnvironmentVariableError
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
		
					parent
					
						
							
								f262cc4ccf
							
						
					
				
			
			
				commit
				
					
						a4abb53ced
					
				
			
		
					 2 changed files with 10 additions and 0 deletions
				
			
		| 
						 | 
					@ -24,3 +24,13 @@ VERSION     = "2.0.3"
 | 
				
			||||||
class Error(Exception):
 | 
					class Error(Exception):
 | 
				
			||||||
    """Base exception class for this project"""
 | 
					    """Base exception class for this project"""
 | 
				
			||||||
    pass
 | 
					    pass
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class MissingEnvironmentVariableError(Error):
 | 
				
			||||||
 | 
					    """Raised when a required environment variable is not set."""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def __init__(self, name)
 | 
				
			||||||
 | 
					        self.name = name
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def __str__(self):
 | 
				
			||||||
 | 
					        return 'Missing required environment variable: {0.name}'.format(o)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue