mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
16 lines
358 B
PHP
Executable File
16 lines
358 B
PHP
Executable File
<?php
|
|
|
|
namespace Http\Discovery\Exception;
|
|
|
|
use Http\Discovery\Exception;
|
|
|
|
/**
|
|
* This exception is thrown when we cannot use a discovery strategy. This is *not* thrown when
|
|
* the discovery fails to find a class.
|
|
*
|
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
|
*/
|
|
class StrategyUnavailableException extends \RuntimeException implements Exception
|
|
{
|
|
}
|