mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
44 lines
1.0 KiB
PHP
Executable File
44 lines
1.0 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\DataStorage
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\DataStorage;
|
|
|
|
/**
|
|
* Lock exception class.
|
|
*
|
|
* This exception is used for instances that have a lock componenent/state after which rendering,
|
|
* header manipulation etc. are no longer allowed/possible.
|
|
*
|
|
* @package phpOMS\DataStorage
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
final class LockException extends \RuntimeException
|
|
{
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param string $message Exception message
|
|
* @param int $code Exception code
|
|
* @param \Exception $previous Previous exception
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function __construct(string $message, int $code = 0, \Exception $previous = null)
|
|
{
|
|
parent::__construct('Interaction with "' . $message . '" already locked.', $code, $previous);
|
|
}
|
|
}
|