CException.php 410 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * CException class file.
  4. *
  5. * @author Qiang Xue <qiang.xue@gmail.com>
  6. * @link http://www.yiiframework.com/
  7. * @copyright 2008-2013 Yii Software LLC
  8. * @license http://www.yiiframework.com/license/
  9. */
  10. /**
  11. * CException represents a generic exception for all purposes.
  12. *
  13. * @author Qiang Xue <qiang.xue@gmail.com>
  14. * @package system.base
  15. * @since 1.0
  16. */
  17. class CException extends Exception
  18. {
  19. }