12 lines
204 B
PHP
12 lines
204 B
PHP
<?php
|
|
|
|
namespace Invoker\Exception;
|
|
|
|
/**
|
|
* The given callable is not actually callable.
|
|
*
|
|
* @author Matthieu Napoli <matthieu@mnapoli.fr>
|
|
*/
|
|
class NotCallableException extends InvocationException
|
|
{
|
|
}
|