18 lines
469 B
PHP
18 lines
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);
|
||
|
}
|
||
|
}
|