correcting name of exception class. was renamed in SnappyMail and therefore blocking the use of this plugin

This commit is contained in:
cm-schl 2022-11-09 11:50:49 +01:00
parent 3992d9d5f7
commit 2a1c5c9a6a
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
<?php
class LdapException extends \RainLoop\Exceptions\Exception
class LdapException extends \RainLoop\Exceptions\ClientException
{
}

View file

@ -129,11 +129,11 @@ class LdapIdentities implements IIdentities
/**
* @inheritDoc
* @throws \RainLoop\Exceptions\Exception
* @throws \RainLoop\Exceptions\ClientException
*/
public function SetIdentities(Account $account, array $identities): void
{
throw new \RainLoop\Exceptions\Exception("Ldap identities provider does not support storage");
throw new \RainLoop\Exceptions\ClientException("Ldap identities provider does not support storage");
}
/**