18 lines
No EOL
463 B
PHP
18 lines
No EOL
463 B
PHP
<?php
|
|
|
|
namespace RTEX\Exceptions\Runtime;
|
|
|
|
use RTEX\Abstracts\RuntimeExceptionCode;
|
|
use Throwable;
|
|
|
|
class KeyException extends \Exception
|
|
{
|
|
/**
|
|
* @param string $message
|
|
* @param Throwable|null $previous
|
|
*/
|
|
public function __construct(string $message = "", ?Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, RuntimeExceptionCode::KeyException, $previous);
|
|
}
|
|
} |