|
1
|
<?php |
|
2
|
|
|
3
|
namespace Invoker\Exception; |
|
4
|
|
|
5
|
/** |
|
6
|
* Not enough parameters could be resolved to invoke the callable.
|
|
7
|
*
|
|
8
|
* @author Matthieu Napoli <matthieu@mnapoli.fr>
|
|
9
|
*/ |
|
10
|
class NotEnoughParametersException extends InvocationException |
|
11
|
{ |
|
12
|
} |
|
13
|
|