Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
DataModelException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
getErrorCodeList | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace Flow\Exception; |
4 | |
5 | /** |
6 | * Category: data model processing exception |
7 | */ |
8 | class DataModelException extends FlowException { |
9 | protected function getErrorCodeList() { |
10 | // flow-error-process-data |
11 | return [ 'process-data' ]; |
12 | } |
13 | } |