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