| 1 | <?php |
||
| 7 | class SupportVectorMachineException extends \Exception |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @param string $binPath |
||
| 12 | * |
||
| 13 | * @return SupportVectorMachineException |
||
| 14 | */ |
||
| 15 | public static function missingBinPath(string $binPath) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $trainFile |
||
| 22 | * |
||
| 23 | * @return SupportVectorMachineException |
||
| 24 | */ |
||
| 25 | public static function missingTrainFile(string $trainFile) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $predictFile |
||
| 32 | * |
||
| 33 | * @return SupportVectorMachineException |
||
| 34 | */ |
||
| 35 | public static function missingPredictFile(string $predictFile) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param string $varPath |
||
| 42 | * |
||
| 43 | * @return SupportVectorMachineException |
||
| 44 | */ |
||
| 45 | public static function missingVarPath(string $varPath) |
||
| 49 | } |
||
| 50 |