laipower/wp-content/upgrade-temp-backup/plugins/authldap/src/Exception/Error.php

25 lines
435 B
PHP
Raw Normal View History

2024-02-08 12:31:51 +00:00
<?php
/**
* Copyright Andrea Heigl <andreas@heigl.org>
*
* Licenses under the MIT-license. For details see the included file LICENSE.md
*/
declare(strict_types=1);
namespace Org_Heigl\AuthLdap\Exception;
use Exception;
class Error extends Exception
{
public function __construct($message, $line = null)
{
parent::__construct($message);
if ($line) {
$this -> line = $line;
}
}
}