rtex-engine/src/RTEX/Exceptions/Runtime/KeyException.php

18 lines
463 B
PHP
Raw Normal View History

2022-12-30 03:06:27 -05:00
<?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);
}
}