1 | <?php |
||
20 | class UndefinedExtractorException extends \Exception implements Exception |
||
21 | { |
||
22 | /** |
||
23 | * @var \OAuth\Common\Service\ServiceInterface $service |
||
24 | */ |
||
25 | protected $service; |
||
26 | |||
27 | /** |
||
28 | * @var array $registeredExtractors |
||
29 | */ |
||
30 | protected $registeredExtractors; |
||
31 | |||
32 | /** |
||
33 | * Constructor |
||
34 | * |
||
35 | * @param \OAuth\Common\Service\ServiceInterface $service |
||
36 | * @param array $registeredExtractors |
||
37 | * @param string|null $message |
||
38 | */ |
||
39 | public function __construct(ServiceInterface $service, $registeredExtractors = array(), $message = null) |
||
52 | |||
53 | /** |
||
54 | * Get the service |
||
55 | * |
||
56 | * @return ServiceInterface |
||
57 | */ |
||
58 | public function getService() |
||
62 | |||
63 | /** |
||
64 | * Get registered extractors |
||
65 | * |
||
66 | * @return array |
||
67 | */ |
||
68 | public function getRegisteredExtractors() |
||
72 | } |
||
73 |