* @license http://www.yiiframework.com/license/ */namespaceyii\base;/** * InvalidParamException represents an exception caused by invalid parameters passed to a method. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */classInvalidParamExceptionextendsException{/** * @return string the user-friendly name of this exception */publicfunctiongetName(){return\Yii::t('yii|Invalid Parameter');}}