mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-11 19:20:01 +08:00
22 lines
471 B
PHP
22 lines
471 B
PHP
<?php
|
|
/**
|
|
* UserException class file.
|
|
*
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yii\base;
|
|
|
|
/**
|
|
* UserException is the base class for exceptions that are meant to be shown to end users.
|
|
* Such exceptions are often caused by mistakes of end users.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @since 2.0
|
|
*/
|
|
class UserException extends Exception
|
|
{
|
|
}
|