updated plugin AuthLDAP version 2.4.6

This commit is contained in:
2021-01-17 21:28:57 +00:00
committed by Gitium
parent 789c435659
commit 8a03c72181
50 changed files with 8724 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Org_Heigl\AuthLdap\Exception;
use RuntimeException;
class InvalidLdapUri extends RuntimeException
{
public static function fromLdapUriString(string $ldapUri): InvalidLdapUri
{
return new self('"%s" is not a valid LDAP-URI.');
}
}