mirror of
https://github.com/friendica/friendica
synced 2024-12-22 22:40:16 +00:00
Remove unused parameters in AddonInvalidConfigFileException
This commit is contained in:
parent
b8e15b42fa
commit
3c84c21318
1 changed files with 2 additions and 2 deletions
|
@ -14,8 +14,8 @@ use Throwable;
|
||||||
*/
|
*/
|
||||||
class AddonInvalidConfigFileException extends \RuntimeException
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue