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

w  
Qiang Xue committed
10 11
namespace yii\base;

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