rtex-engine/src/RTEX/Exceptions/Runtime/ImportException.php
2022-12-30 03:06:27 -05:00

18 lines
No EOL
469 B
PHP

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