Class yii\base\UnknownMethodException

Inheritanceyii\base\UnknownMethodException » BadMethodCallException
Available since version2.0
Source Code https://github.com/yiisoft/yii2/blob/master/framework/base/UnknownMethodException.php

UnknownMethodException represents an exception caused by accessing an unknown object method.

Public Methods

Hide inherited methods

Method Description Defined By
getName() yii\base\UnknownMethodException

Method Details

Hide inherited methods

getName() public method

public string getName ( )
return string

The user-friendly name of this exception

                public function getName()
{
    return 'Unknown Method';
}