]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Logger/Exception/LoggerArgumentException.php
Use the owner, not the author
[friendica.git] / src / Core / Logger / Exception / LoggerArgumentException.php
index 683e536c9d50ee6d96dee34cd215248f59e60bb6..6925be4c7d42a6498929d6f01e0ed70743d9964d 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -23,9 +23,12 @@ namespace Friendica\Core\Logger\Exception;
 
 use Throwable;
 
+/**
+ * Exception in case an argument of a logger class isn't valid
+ */
 class LoggerArgumentException extends \InvalidArgumentException
 {
-       public function __construct($message = "", Throwable $previous = null)
+       public function __construct($message = '', Throwable $previous = null)
        {
                parent::__construct($message, 500, $previous);
        }