12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
namespace Invoker\Exception;
|
|
|
|
/**
|
|
* Impossible to invoke the callable.
|
|
*
|
|
* @author Matthieu Napoli <matthieu@mnapoli.fr>
|
|
*/
|
|
class InvocationException extends \Exception
|
|
{
|
|
}
|