Exception.php 422 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6
<?php
/**
 * Exception class file.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.yiiframework.com/
w  
Qiang Xue committed
7
 * @copyright Copyright &copy; 2008-2012 Yii Software LLC
Qiang Xue committed
8 9 10
 * @license http://www.yiiframework.com/license/
 */

w  
Qiang Xue committed
11 12
namespace yii\base;

Qiang Xue committed
13 14 15 16
/**
 * Exception represents a generic exception for all purposes.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
w  
Qiang Xue committed
17
 * @since 2.0
Qiang Xue committed
18 19 20 21 22
 */
class Exception extends \Exception
{
}