17 lines
439 B
PHP
17 lines
439 B
PHP
<?php
|
|
|
|
class stTaskSchedulerImportLogException extends Exception
|
|
{
|
|
private $messageParameters;
|
|
|
|
public function __construct(string $message, int $type = stTaskLogger::TYPE_INFO, ?array $messageParameters = null)
|
|
{
|
|
parent::__construct($message, $type);
|
|
$this->messageParameters = $messageParameters;
|
|
}
|
|
|
|
public function getMessageParameters(): ?array
|
|
{
|
|
return $this->messageParameters;
|
|
}
|
|
} |