| 1 | <?php |
||
| 15 | class ItemTooLargeException extends \RuntimeException |
||
| 16 | { |
||
| 17 | /** @var Item */ |
||
| 18 | public $item; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * ItemTooLargeException constructor. |
||
| 22 | * |
||
| 23 | * @param string $message |
||
| 24 | * @param Item $item |
||
| 25 | */ |
||
| 26 | 1 | public function __construct($message, Item $item) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return Item |
||
| 34 | */ |
||
| 35 | 1 | public function getItem() |
|
| 39 | } |
||
| 40 |