| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class LockFileFail extends \RuntimeException |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Construct the exception. Note: The message is NOT binary safe. |
||
| 20 | * |
||
| 21 | * @link http://php.net/manual/en/exception.construct.php |
||
| 22 | * |
||
| 23 | * @param string $message [optional] The Exception message to throw. |
||
| 24 | * @param int $code [optional] The Exception code. |
||
| 25 | * @param \Throwable $previous [optional] The previous throwable used for the exception chaining. |
||
| 26 | * |
||
| 27 | * @since 5.1.0 |
||
| 28 | */ |
||
| 29 | 1 | public function __construct($message, $code = 16, \Throwable $previous = null) |
|
| 35 |