1 | <?php |
||
8 | class RedisDeleteCheckException extends RedisWRDCheckException |
||
9 | { |
||
10 | const EXCEPTION_NAME = 'RedisDeleteCheck'; |
||
11 | |||
12 | const CODE_DOES_NOT_DELETE = 3003; |
||
13 | const TEXT_DOES_NOT_DELETE = 'Delete value beforeDelete:%s stay:%s'; |
||
14 | |||
15 | /** |
||
16 | * @param string $beforeDeleteValue |
||
17 | * @param string $currentValue |
||
18 | * |
||
19 | * @return self |
||
20 | */ |
||
21 | 1 | public static function doesNotDelete($beforeDeleteValue, $currentValue) |
|
25 | } |
||
26 |