mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 07:14:06 +01:00
21 lines
468 B
PHP
21 lines
468 B
PHP
<?php
|
|
/**
|
|
* CDbException class file.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008-2009 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
/**
|
|
* CDbException represents an exception that is caused by some DB-related operations.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @version $Id$
|
|
* @package system.db
|
|
* @since 1.0
|
|
*/
|
|
class CDbException extends CException
|
|
{
|
|
} |