1 | <?php |
||
7 | class EntityNotFoundException extends RuntimeException |
||
8 | { |
||
9 | /** |
||
10 | * Name of the affected Entity Map. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $entity; |
||
15 | |||
16 | /** |
||
17 | * Set the affected Entity Map. |
||
18 | * |
||
19 | * @param string $entity |
||
20 | * @return $this |
||
21 | */ |
||
22 | public function setEntity($entity) |
||
30 | |||
31 | /** |
||
32 | * Get the affected Entity. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getEntity() |
||
40 | } |
||
41 |