mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-18 23:43:19 +08:00
refactored object creation.
added more exception classes. working on request and response classes.
This commit is contained in:
21
framework/base/BadConfigException.php
Normal file
21
framework/base/BadConfigException.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* BadConfigException class file.
|
||||
*
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright © 2008-2012 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace yii\base;
|
||||
|
||||
/**
|
||||
* BadConfigException represents an exception caused by incorrect object configuration.
|
||||
*
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
class BadConfigException extends \Exception
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user