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

ICanBoogie / Routing / 11642061502

02 Nov 2024 10:41AM UTC coverage: 97.454% (+0.5%) from 96.984%
11642061502

push

github

olvlvl
Tidy documentation

421 of 432 relevant lines covered (97.45%)

6.96 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
namespace ICanBoogie\Routing\Exception;
4

5
use ICanBoogie\Routing\Exception;
6
use LogicException;
7
use Throwable;
8

9
class RouteNotFound extends LogicException implements Exception
10
{
11
    public const DEFAULT_MESSAGE = "Unable to find route with the specified predicate";
12

13
    public function __construct(
14
        string $message = self::DEFAULT_MESSAGE,
15
        public readonly mixed $predicate = null,
16
        ?Throwable $previous = null
17
    ) {
18
        parent::__construct($message, previous: $previous);
×
19
    }
20
}
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