mirror of
https://github.com/friendica/friendica
synced 2025-03-31 09:20:15 +00:00
21 lines
461 B
PHP
21 lines
461 B
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Core\Addon\Exception;
|
|
|
|
use Throwable;
|
|
|
|
/**
|
|
* Exception in case one or more config files of the addons are invalid
|
|
*/
|
|
class AddonInvalidConfigFileException extends \RuntimeException
|
|
{
|
|
public function __construct($message = '')
|
|
{
|
|
parent::__construct($message, 500);
|
|
}
|
|
}
|