Exception
3 years ago
Strategy
6 months ago
ClassDiscovery.php
3 years ago
Exception.php
3 years ago
HttpAsyncClientDiscovery.php
2 years ago
HttpClientDiscovery.php
2 years ago
MessageFactoryDiscovery.php
2 years ago
NotFoundException.php
11 months ago
Psr17FactoryDiscovery.php
6 months ago
Psr18ClientDiscovery.php
11 months ago
StreamFactoryDiscovery.php
2 years ago
UriFactoryDiscovery.php
2 years ago
NotFoundException.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaHttp\Discovery; |
| 4 | |
| 5 | /** |
| 6 | * Thrown when a discovery does not find any matches. |
| 7 | * |
| 8 | * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> |
| 9 | * |
| 10 | * @deprecated since since version 1.0, and will be removed in 2.0. Use {@link \AmeliaHttp\Discovery\Exception\NotFoundException} instead. |
| 11 | */ |
| 12 | final class NotFoundException extends \AmeliaHttp\Discovery\Exception\NotFoundException |
| 13 | { |
| 14 | } |
| 15 |