• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ICanBoogie / Routing / 4086305047

pending completion
4086305047

push

github

Olivier Laviale
Tidy

2 of 2 new or added lines in 1 file covered. (100.0%)

398 of 455 relevant lines covered (87.47%)

6.35 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/lib/Exception/RouteNotFound.php
1
<?php
2

3
/*
4
 * This file is part of the ICanBoogie package.
5
 *
6
 * (c) Olivier Laviale <olivier.laviale@gmail.com>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11

12
namespace ICanBoogie\Routing\Exception;
13

14
use ICanBoogie\Routing\Exception;
15
use LogicException;
16
use Throwable;
17

18
class RouteNotFound extends LogicException implements Exception
19
{
20
    public const DEFAULT_MESSAGE = "Unable to find route with the specified predicate.";
21

22
    public function __construct(
23
        string $message = self::DEFAULT_MESSAGE,
×
24
        public readonly mixed $predicate = null,
25
        Throwable $previous = null
26
    ) {
27
        parent::__construct($message, 0, $previous);
×
28
    }
29
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc