One Hat Cyber Team
Your IP :
172.70.80.191
Server IP :
188.114.96.4
Server :
Linux thuru 6.5.11-4-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.11-4 (2023-11-20T10:19Z) x86_64
Server Software :
Apache/2.4.51 (Unix) OpenSSL/1.0.2k-fips
PHP Version :
7.3.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
thuruk
/
public_html
/
App
/
web
/
View File Name :
CacheException.php
<?php /** * This file is part of the CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace CodeIgniter\Cache\Exceptions; use CodeIgniter\Exceptions\DebugTraceableTrait; use CodeIgniter\Exceptions\ExceptionInterface; use RuntimeException; /** * CacheException */ class CacheException extends RuntimeException implements ExceptionInterface { use DebugTraceableTrait; /** * Thrown when handler has no permission to write cache. * * @param string $path * * @return CacheException */ public static function forUnableToWrite(string $path) { return new static(lang('Cache.unableToWrite', [$path])); } /** * Thrown when an unrecognized handler is used. * * @return CacheException */ public static function forInvalidHandlers() { return new static(lang('Cache.invalidHandlers')); } /** * Thrown when no backup handler is setup in config. * * @return CacheException */ public static function forNoBackup() { return new static(lang('Cache.noBackup')); } /** * Thrown when specified handler was not found. * * @return CacheException */ public static function forHandlerNotFound() { return new static(lang('Cache.handlerNotFound')); } }