13 lines
231 B
PHP
13 lines
231 B
PHP
<?php
|
|
|
|
namespace Invoker\Exception;
|
|
|
|
/**
|
|
* Not enough parameters could be resolved to invoke the callable.
|
|
*
|
|
* @author Matthieu Napoli <matthieu@mnapoli.fr>
|
|
*/
|
|
class NotEnoughParametersException extends InvocationException
|
|
{
|
|
}
|