Core  3.2
PHP API documentation
 All Data Structures Namespaces Files Functions Variables Pages
ErrorCodePROP.php
Go to the documentation of this file.
1 <?php
2 /*
3  * @author Anakeen
4  * @package FDL
5 */
6 /**
7  * Errors code used to checking family's properties' parameters
8  * @class ErrorCodePROP
9  * @brief List all error code for properties configuration
10  * @see ErrorCode
11  */
13 {
14  /**
15  * @errorCode
16  * The property's name is missing
17  */
18  const PROP0100 = 'missing property name';
19  /**
20  * @errorCode
21  * The property's name is malformed (it should conform to the attribute's name syntax)
22  */
23  const PROP0101 = 'syntax error for property name "%s"';
24  /**
25  * @errorCode
26  * The property's value can't be verified beacause the module's associated with it is not installed.
27  */
28  const PROP0102 = 'cannot verify validity of property %s. Module %s must be installed.';
29  /**
30  * @errorCode
31  * The property's parameter's value is missing
32  */
33  const PROP0200 = 'missing parameters values';
34  /**
35  * @errorCode
36  * The property's parameter's value is malformed (it should conform to the syntax "<pName>=<pValue>")
37  */
38  const PROP0201 = 'malformed parameter value "%s"';
39  /**
40  * @errorCode
41  * The property's parameter's pName has no valid class name.
42  * This will occurs when setting an unknown/unsupported parameter's value.
43  */
44  const PROP0202 = 'unknown class name for parameter "%s"';
45 }
List all error code for properties configuration.
← centre documentaire © anakeen