for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Oddvalue\DbRouter\Exceptions;
use Exception;
use Oddvalue\DbRouter\Route;
class NoRedirectUrlException extends Exception
{
public static function forRoute(Route $route)
return new static("Route #{$route->id} has no redirect URL.");
}