File tree Expand file tree Collapse file tree 1 file changed +56
-1
lines changed Expand file tree Collapse file tree 1 file changed +56
-1
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
- class Text_LanguageDetect_Exception extends Exception {}
2
+ class Text_LanguageDetect_Exception extends Exception
3
+ {
4
+ /**
5
+ * Database file could not be found
6
+ */
7
+ const DB_NOT_FOUND = 10 ;
8
+
9
+ /**
10
+ * Database file found, but not readable
11
+ */
12
+ const DB_NOT_READABLE = 11 ;
13
+
14
+ /**
15
+ * Database file is empty
16
+ */
17
+ const DB_EMPTY = 12 ;
18
+
19
+ /**
20
+ * Database contents is not a PHP array
21
+ */
22
+ const DB_NOT_ARRAY = 13 ;
23
+
24
+ /**
25
+ * Magic quotes are activated
26
+ */
27
+ const MAGIC_QUOTES = 14 ;
28
+
29
+
30
+ /**
31
+ * Parameter of invalid type passed to method
32
+ */
33
+ const PARAM_TYPE = 20 ;
34
+
35
+ /**
36
+ * Character in parameter is invalid
37
+ */
38
+ const INVALID_CHAR = 21 ;
39
+
40
+
41
+ /**
42
+ * Language is not in the database
43
+ */
44
+ const UNKNOWN_LANGUAGE = 30 ;
45
+
46
+
47
+ /**
48
+ * Error during block detection
49
+ */
50
+ const BLOCK_DETECTION = 40 ;
51
+
52
+
53
+ /**
54
+ * Error while clustering languages
55
+ */
56
+ const NO_HIGHEST_KEY = 50 ;
57
+ }
You can’t perform that action at this time.
0 commit comments