26 defined(
'LGV_LANG_CATCHER' ) or die ( 'Cannot Execute Directly' );
32 static $pdo_error_name_failed_to_open_data_db =
'Failed to open the data storage database.';
33 static $pdo_error_desc_failed_to_open_data_db =
'There was an error while trying to access the main data storage database.';
35 static $pdo_error_name_failed_to_open_security_db =
'Failed to open the security database.';
36 static $pdo_error_desc_failed_to_open_security_db =
'There was an error while trying to access the security database.';
38 static $pdo_error_name_invalid_login =
'Invalid Login.';
39 static $pdo_error_desc_invalid_login =
'The login or password provided was not valid.';
41 static $pdo_error_name_illegal_write_attempt =
'Illegal Database Write Attempt.';
42 static $pdo_error_desc_illegal_write_attempt =
'There was an attempt to write to a record for which the user does not have write permission.';
44 static $pdo_error_name_illegal_delete_attempt =
'Illegal Database delete Attempt.';
45 static $pdo_error_desc_illegal_delete_attempt =
'There was an attempt to delete a record for which the user does not have write permission.';
47 static $pdo_error_name_failed_delete_attempt =
'Failed Database delete Attempt.';
48 static $pdo_error_desc_failed_delete_attempt =
'There was a failure during an attempt to delete a record.';
50 static $db_error_name_class_file_not_found =
'Class file was not found.';
51 static $db_error_desc_class_file_not_found =
'The file for the class being instantiated was not found.';
52 static $db_error_name_class_not_created =
'Class was not created.';
53 static $db_error_desc_class_not_created =
'The attempt to instantiate the class failed.';
55 static $db_error_name_user_not_authorized =
'User Not Authorized';
56 static $db_error_desc_user_not_authorized =
'The user is not authorized to perform the requested operation.';
58 static $access_error_name_user_not_authorized =
'User Not Authorized';
59 static $access_error_desc_user_not_authorized =
'The user is not authorized to perform the requested operation.';
60 static $access_error_name_class_file_not_found =
'Class file was not found.';
61 static $access_error_desc_class_file_not_found =
'The file for the class being instantiated was not found.';
62 static $access_error_name_class_not_created =
'Class was not created.';
63 static $access_error_desc_class_not_created =
'The attempt to instantiate the class failed.';
65 static $login_error_name_api_key_invalid =
'API Key Invalid';
66 static $login_error_desc_api_key_invalid =
'The API key is either invalid, or has expired. You need to log in again, and acquire a new API key.';
67 static $login_error_name_api_key_mismatch =
'API Key Mismatch';
68 static $login_error_desc_api_key_mismatch =
'The API key does not match the API key for this instance.';
70 static $login_error_name_attempt_to_delete_god =
'Attempt To Delete \'God\' Login';
71 static $login_error_desc_attempt_to_delete_god =
'You cannot delete the \'God\' login!';