1 | <?php |
||
14 | class UnsupportedOperationException extends CollectionException |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $operation; |
||
20 | |||
21 | /** |
||
22 | * @param string $operation |
||
23 | */ |
||
24 | public function __construct($operation) |
||
29 | |||
30 | /** |
||
31 | * Gets the attempted operation |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getOperation() |
||
38 | } |