Files
yii2/framework/base/BadMethodException.php
Qiang Xue b1047e7ff6 refactored object creation.
added more exception classes.
working on request and response classes.
2012-06-30 22:21:28 -04:00

22 lines
425 B
PHP

<?php
/**
* BadMethodException class file.
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 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
{
}