1 | <?php |
||
8 | class Error |
||
9 | { |
||
10 | |||
11 | use HydratableTrait; |
||
12 | |||
13 | protected $error_id; |
||
14 | |||
15 | protected $error; |
||
16 | |||
17 | protected $error_description; |
||
18 | |||
19 | protected $error_code; |
||
20 | |||
21 | /** |
||
22 | * @return mixed |
||
23 | */ |
||
24 | public function getErrorId() |
||
28 | |||
29 | /** |
||
30 | * @return mixed |
||
31 | */ |
||
32 | public function getError() |
||
36 | |||
37 | /** |
||
38 | * @return mixed |
||
39 | */ |
||
40 | public function getErrorDescription() |
||
44 | |||
45 | /** |
||
46 | * @return mixed |
||
47 | */ |
||
48 | public function getErrorCode() |
||
52 | } |
||
53 |