ci4

Форк
0
/
CacheException.php 
66 строк · 1.5 Кб
1
<?php
2

3
declare(strict_types=1);
4

5
/**
6
 * This file is part of CodeIgniter 4 framework.
7
 *
8
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
9
 *
10
 * For the full copyright and license information, please view
11
 * the LICENSE file that was distributed with this source code.
12
 */
13

14
namespace CodeIgniter\Cache\Exceptions;
15

16
use CodeIgniter\Exceptions\DebugTraceableTrait;
17
use CodeIgniter\Exceptions\ExceptionInterface;
18
use RuntimeException;
19

20
/**
21
 * CacheException
22
 */
23
class CacheException extends RuntimeException implements ExceptionInterface
24
{
25
    use DebugTraceableTrait;
26

27
    /**
28
     * Thrown when handler has no permission to write cache.
29
     *
30
     * @return CacheException
31
     */
32
    public static function forUnableToWrite(string $path)
33
    {
34
        return new static(lang('Cache.unableToWrite', [$path]));
35
    }
36

37
    /**
38
     * Thrown when an unrecognized handler is used.
39
     *
40
     * @return CacheException
41
     */
42
    public static function forInvalidHandlers()
43
    {
44
        return new static(lang('Cache.invalidHandlers'));
45
    }
46

47
    /**
48
     * Thrown when no backup handler is setup in config.
49
     *
50
     * @return CacheException
51
     */
52
    public static function forNoBackup()
53
    {
54
        return new static(lang('Cache.noBackup'));
55
    }
56

57
    /**
58
     * Thrown when specified handler was not found.
59
     *
60
     * @return CacheException
61
     */
62
    public static function forHandlerNotFound()
63
    {
64
        return new static(lang('Cache.handlerNotFound'));
65
    }
66
}
67

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.