PluginProbe
DecaLog / 4.4.0
DecaLog v4.4.0
3.0.2 3.1.0 3.10.0 3.2.0 3.3.0 3.4.0 3.4.1 3.5.0 3.5.1 3.6.0 3.6.1 3.6.2 3.6.3 3.7.0 3.7.1 3.8.0 3.9.0 3.9.1 4.0.0 4.1.0 4.2.0 4.3.0 4.3.1 4.4.0 4.5.0 All 75 releases
decalog / includes / libraries / lock / exception / PhpLockException.php

PhpLockException.php in DecaLog 4.4.0, at includes/libraries/lock/exception/PhpLockException.php

25 lines 468 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace malkusch\lock\exception;
6
7 /**
8 * Common php-lock/lock exception interface.
9 *
10 * @author Petr Levtonov <petr@levtonov.com>
11 * @license WTFPL
12 *
13 * @method string getMessage()
14 * @method int getCode()
15 * @method string getFile()
16 * @method int getLine()
17 * @method array getTrace()
18 * @method string getTraceAsString()
19 * @method \Throwable|null getPrevious()
20 * @method string __toString()
21 */
22 interface PhpLockException
23 {
24 }
25