Skip to content

Commit 2118dc0

Browse files
committed
add error constants
git-svn-id: http://svn.php.net/repository/pear/packages/Text_LanguageDetect/trunk@322322 c90b9560-bf6c-de11-be94-00142212c4b1
1 parent 670e747 commit 2118dc0

File tree

1 file changed

+56
-1
lines changed

1 file changed

+56
-1
lines changed

Text/LanguageDetect/Exception.php

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,57 @@
11
<?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+
}

0 commit comments

Comments
 (0)