mirror of
https://github.com/friendica/friendica
synced 2025-04-27 08:30:10 +00:00
Add Feedback :-)
This commit is contained in:
parent
409d909d0f
commit
f4ea74447e
14 changed files with 80 additions and 44 deletions
13
src/Core/Logger/Exception/LogLevelException.php
Normal file
13
src/Core/Logger/Exception/LogLevelException.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Core\Logger\Exception;
|
||||
|
||||
use Throwable;
|
||||
|
||||
class LogLevelException extends \InvalidArgumentException
|
||||
{
|
||||
public function __construct($message = "", Throwable $previous = null)
|
||||
{
|
||||
parent::__construct($message, 500, $previous);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue