for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Feedo\ArgumentBuilder\Exception;
/**
* Class UndefinedMethodException.
*
* @author Denis Voytyuk <[email protected]>
*/
class UndefinedMethodException extends \RuntimeException
{
public function __construct($name)
parent::__construct('Call to undefined method '.__CLASS__.'::'.$name.'()');
}