ClassInstantiationFailedException.php
3 years ago
DiscoveryFailedException.php
3 years ago
NoCandidateFoundException.php
3 years ago
NotFoundException.php
3 years ago
PuliUnavailableException.php
3 years ago
StrategyUnavailableException.php
3 years ago
NotFoundException.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaHttp\Discovery\Exception; |
| 4 | |
| 5 | use AmeliaHttp\Discovery\Exception; |
| 6 | |
| 7 | /** |
| 8 | * Thrown when a discovery does not find any matches. |
| 9 | * |
| 10 | * @final do NOT extend this class, not final for BC reasons |
| 11 | * |
| 12 | * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> |
| 13 | */ |
| 14 | /*final */class NotFoundException extends \RuntimeException implements Exception |
| 15 | { |
| 16 | } |
| 17 |