diff --git a/Model/DbDriver.php b/Model/DbDriver.php index c3face2..177155f 100644 --- a/Model/DbDriver.php +++ b/Model/DbDriver.php @@ -1,4 +1,6 @@ * @link http://netmonsters.ru @@ -36,7 +38,7 @@ abstract class DbDriver $required = array('database', 'username', 'password', 'hostname'); foreach ($required as $option) { if (!isset($config[$option])) { - throw new \GeneralException('Configuration must have a "' . $option . '".'); + throw new GeneralException('Configuration must have a "' . $option . '".'); } } }