Text_LanguageDetect
[ class tree: Text_LanguageDetect ] [ index: Text_LanguageDetect ] [ all elements ]

Source for file Exception.php

Documentation is available at Exception.php

  1. <?php
  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. }

Documentation generated on Mon, 11 Mar 2019 15:47:09 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.