src/Exceptions/UnnamedRouteException.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace Glhd\Gretel\Exceptions;

use InvalidArgumentException;

class UnnamedRouteException extends InvalidArgumentException
{
    public function __construct()
    {
        parent::__construct('You cannot define a breadcrumb on a route that has not been named.');
    }
}