Remove unused parameters in AddonInvalidConfigFileException

This commit is contained in:
Art4 2024-11-19 08:05:34 +00:00
parent b8e15b42fa
commit 3c84c21318

View file

@ -14,8 +14,8 @@ use Throwable;
*/
class AddonInvalidConfigFileException extends \RuntimeException
{
public function __construct($message = '', $code = 0, Throwable $previous = null)
public function __construct($message = '')
{
parent::__construct($message, 500, $previous);
parent::__construct($message, 500);
}
}