mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +03:00
Merge pull request #647 from cm-schl/ldap-identities-plugin
correcting name of exception class in plugin ldap-identities
This commit is contained in:
commit
2f0e410b80
2 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class LdapException extends \RainLoop\Exceptions\Exception
|
class LdapException extends \RainLoop\Exceptions\ClientException
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
@ -129,11 +129,11 @@ class LdapIdentities implements IIdentities
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
* @throws \RainLoop\Exceptions\Exception
|
* @throws \RainLoop\Exceptions\ClientException
|
||||||
*/
|
*/
|
||||||
public function SetIdentities(Account $account, array $identities): void
|
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");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue