2023-08-12 01:39:17 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Internal errors
|
2023-08-19 21:15:47 +03:00
|
|
|
$Err_Int_JSONEncode = "int.jsonencode"; // Failed to encode JSON data
|
2023-08-16 06:34:01 +03:00
|
|
|
|
|
|
|
// Request data parsing errors
|
2023-08-19 21:15:47 +03:00
|
|
|
$Err_RDP_InvalidID = "rdp.invalidid"; // Requested ID of resource is invalid
|
|
|
|
$Err_RDP_InvalidArgs = "rdp.invalidargs"; // Invalid arguments supplied to method
|
2023-08-16 06:34:01 +03:00
|
|
|
|
|
|
|
// Data processing errors
|
2023-08-19 21:15:47 +03:00
|
|
|
$Err_DP_IDNotFound = "dp.idnotfound"; // Resource not found by requested ID
|
|
|
|
$Err_DP_AlreadyLoggedIn = "dp.alreadyloggedin"; // User already logged into account
|
|
|
|
$Err_DP_RegClosed = "dp.regclosed"; // Registration is closed
|
2023-08-12 01:39:17 +03:00
|
|
|
|
|
|
|
?>
|