ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
SimpleExcelException.php
Go to the documentation of this file.
1 <?php
2 
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 ?>