mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-24 16:43:48 +00:00
add base configuration for user
This commit is contained in:
20
DependencyInjection/MissingBundleException.php
Normal file
20
DependencyInjection/MissingBundleException.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace CL\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);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user