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