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