ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
SimpleExcelException.php
Go to the documentation of this file.
1 <?php
2 
3 namespace SimpleExcel\Exception;
4 
13 abstract class SimpleExcelException
14 {
15  const UNKNOWN = 0;
16  const FILE_NOT_FOUND = 1;
18  const ERROR_READING_FILE = 3;
20  const FIELD_NOT_FOUND = 5;
21  const ROW_NOT_FOUND = 6;
22  const COLUMN_NOT_FOUND = 7;
23  const CELL_NOT_FOUND = 8;
25  const MALFORMED_JSON = 10;
26 }
27 ?>