| 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 |
|