]> git.mxchange.org Git - friendica.git/commitdiff
Remove unused parameters in AddonInvalidConfigFileException
authorArt4 <art4@wlabs.de>
Tue, 19 Nov 2024 08:05:34 +0000 (08:05 +0000)
committerArt4 <art4@wlabs.de>
Tue, 19 Nov 2024 08:05:34 +0000 (08:05 +0000)
src/Core/Addon/Exception/AddonInvalidConfigFileException.php

index 677a9e42bde02c95b351acb3dd69952eaf07de87..f7d245ba16ca03d39d30743204644d4506101dee 100644 (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);
        }
 }