Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | public function __construct($identifiers, $message = '', $code = 450, \Exception $previous = null) |
||
11 | { |
||
12 | $message = sprintf( |
||
13 | 'The following identifiers are not defined as well, (%s) |
||
14 | you need to add the following lines on your businessEntity properties: |
||
15 | <br> <pre>@VIC\BusinessProperty("businessParameter")</pre>', |
||
16 | implode($identifiers, ', ') |
||
17 | ); |
||
18 | parent::__construct($message, $code, $previous); |
||
19 | } |
||
20 | } |
||
21 |