mirror of
				https://gitlab.com/Chill-Projet/chill-bundles.git
				synced 2025-10-31 01:08:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			380 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			380 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Chill\MainBundle\DependencyInjection;
 | |
| 
 | |
| use Exception;
 | |
| 
 | |
| /**
 | |
|  * Description of MissingBundleException
 | |
|  *
 | |
|  * @author julien
 | |
|  */
 | |
| class MissingBundleException extends Exception {
 | |
|     
 | |
|     public function __construct($missingBundleName) {
 | |
|         $message = "The bundle $missingBundleName is missing.";
 | |
|         
 | |
|         parent::__construct($message, 500);
 | |
|     }
 | |
|     
 | |
| }
 |