1 | <?php namespace BuildR\TestTools\Exception; |
||
18 | class DataSetLoadingException extends Exception { |
||
19 | |||
20 | const MESSAGE_LOAD_FAILED = 'The data set (%s) cannot be loaded Message: %s!'; |
||
21 | |||
22 | /** |
||
23 | * This exception type is used to indicates error occurred while data-set loading |
||
24 | * |
||
25 | * @param string $dataSetName |
||
26 | * @param string $externalMessage |
||
27 | * |
||
28 | * @return \BuildR\TestTools\Exception\DataSetLoadingException |
||
29 | */ |
||
30 | public static function loadFailed($dataSetName, $externalMessage = '') { |
||
33 | |||
34 | } |
||
35 |