|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /usr/src/lsws/lsws-6.3.4/add-ons/webcachemgr/src/ |
Upload File : |
<?php
/** ******************************************
* LiteSpeed Web Server Cache Manager
* @author: LiteSpeed Technologies, Inc. (https://www.litespeedtech.com)
* @copyright: (c) 2018
* ******************************************* */
namespace Lsc\Wp;
class LSCMException extends \Exception
{
const E_ERROR = 0;
/**
* show trace msg
*/
const E_PROGRAM = 100;
/**
* error shown to user
*/
const E_PERMISSION = 101;
const E_UNSUPPORTED = 102;
/**
* Exception is considered non-fatal. Used to determine
* UserCommand->runAsUser() return status.
*/
const E_NON_FATAL = 103;
}