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
StrategyUnavailableException.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaHttp\Discovery\Exception; |
| 4 | |
| 5 | use AmeliaHttp\Discovery\Exception; |
| 6 | |
| 7 | /** |
| 8 | * This exception is thrown when we cannot use a discovery strategy. This is *not* thrown when |
| 9 | * the discovery fails to find a class. |
| 10 | * |
| 11 | * @author Tobias Nyholm <tobias.nyholm@gmail.com> |
| 12 | */ |
| 13 | class StrategyUnavailableException extends \RuntimeException implements Exception |
| 14 | { |
| 15 | } |
| 16 |