mirror of
https://github.com/wiosna-dev/limesurvey-api-client.git
synced 2026-03-12 10:11:49 +01:00
Composer > meritoo/common-library package > use latest version
This commit is contained in:
@@ -20,10 +20,16 @@ use Meritoo\LimeSurvey\ApiClient\Type\MethodType;
|
||||
class UnknownMethodException extends UnknownTypeException
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
* Creates exception
|
||||
*
|
||||
* @param string $unknownMethod Name of unknown method used while talking to the LimeSurvey's API
|
||||
* @return UnknownMethodException
|
||||
*/
|
||||
public function __construct($unknownType)
|
||||
public static function createException($unknownMethod)
|
||||
{
|
||||
parent::__construct($unknownType, new MethodType(), 'name of method used while talking to the LimeSurvey\'s API');
|
||||
/* @var UnknownMethodException $exception */
|
||||
$exception = parent::create($unknownMethod, new MethodType(), 'name of method used while talking to the LimeSurvey\'s API');
|
||||
|
||||
return $exception;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user