⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-roundcube
/
plugins
/
enigma
/
lib
/
View File Name :
enigma_error.php
| +-------------------------------------------------------------------------+ */ class enigma_error { private $code; private $message; private $data = []; // error codes const OK = 0; const INTERNAL = 1; const NODATA = 2; const KEYNOTFOUND = 3; const DELKEY = 4; const BADPASS = 5; const EXPIRED = 6; const UNVERIFIED = 7; const NOMDC = 8; function __construct($code = null, $message = '', $data = []) { $this->code = $code; $this->message = $message; $this->data = $data; } function getCode() { return $this->code; } function getMessage() { return $this->message; } function getData($name = null) { if ($name) { return $this->data[$name] ?? null; } return $this->data; } }