for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPKitchen\Platform\Exception\Runtime\Method;
/**
* Represents exception caused by calling a method in a wrong way.
*
* @package PHPKitchen\Platform\Exception\Runtime\Method
* @author Dmitry Kolodko <[email protected]>
*/
class InvalidCallException extends \Exception {
public function getName() {
return 'Invalid Call';
}