add base configuration for user

This commit is contained in:
2013-12-15 23:33:34 +01:00
parent 05e3873d72
commit 6058be75d1
4 changed files with 98 additions and 0 deletions

View 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);
}
}