| 1 | <?php |
||
| 10 | class CrossTableException extends \RuntimeException |
||
| 11 | { |
||
| 12 | |||
| 13 | const FILE_NOT_FOUND_OR_NOT_READABLE = 1; |
||
| 14 | const ERROR_READING_CSV_LINE = 2; |
||
| 15 | const ERROR_PARSING_CSV_LINE = 3; |
||
| 16 | |||
| 17 | 1 | public static function fileNotFoundOrNotReadable(string $fileName): self |
|
| 21 | |||
| 22 | public static function errorReadingCsvLine(): self |
||
| 28 | |||
| 29 | 1 | public static function errorParsingCsvLine(): self |
|
| 33 | } |
||
| 34 |