Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| FailCommitException | |
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: commit failure exception |
| 7 | */ |
| 8 | class FailCommitException extends FlowException { |
| 9 | protected function getErrorCodeList() { |
| 10 | // flow-error-fail-commit |
| 11 | return [ 'fail-commit' ]; |
| 12 | } |
| 13 | } |