for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPKitchen\Platform\Exception\HTTP;
use PHPKitchen\Platform\Exception\Mixin\StaticConstructors;
/**
* Represents exception caused by an invalid route.
*
* @author Dmitry Kolodko <[email protected]>
* @since 1.0
*/
class InvalidRouteException extends \Exception {
use StaticConstructors;
public function getName() {
return 'Invalid Route';
}