mirror of
https://github.com/friendica/friendica
synced 2025-04-27 01:10:14 +00:00
Refactoring Core class structures ...
This commit is contained in:
parent
57b4c008cb
commit
b216317477
130 changed files with 1625 additions and 1397 deletions
13
src/Core/Config/Exception/ConfigFileException.php
Normal file
13
src/Core/Config/Exception/ConfigFileException.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Core\Config\Exception;
|
||||
|
||||
use Throwable;
|
||||
|
||||
class ConfigFileException extends \RuntimeException
|
||||
{
|
||||
public function __construct($message = "", $code = 0, Throwable $previous = null)
|
||||
{
|
||||
parent::__construct($message, 500, $previous);
|
||||
}
|
||||
}
|
13
src/Core/Config/Exception/ConfigPersistenceException.php
Normal file
13
src/Core/Config/Exception/ConfigPersistenceException.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Core\Config\Exception;
|
||||
|
||||
use Throwable;
|
||||
|
||||
class ConfigPersistenceException extends \RuntimeException
|
||||
{
|
||||
public function __construct($message = "", Throwable $previous = null)
|
||||
{
|
||||
parent::__construct($message, 500, $previous);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue