diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-01-27 16:23:14 +0100 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2025-02-25 22:18:18 +0100 |
commit | 7629d4df1775c6e1a646ca8d9b5df970a174161e (patch) | |
tree | febf22d91478c3d2f9332f30fa3ad850491fa8f9 /apps/user_ldap/lib/Exceptions/ConfigurationIssueException.php | |
parent | 388301275bb426b29720885b87278f5473e1b6ff (diff) | |
download | nextcloud-server-7629d4df1775c6e1a646ca8d9b5df970a174161e.tar.gz nextcloud-server-7629d4df1775c6e1a646ca8d9b5df970a174161e.zip |
feat(user_ldap): Improve error detail when saving an incorrect configuration
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/user_ldap/lib/Exceptions/ConfigurationIssueException.php')
-rw-r--r-- | apps/user_ldap/lib/Exceptions/ConfigurationIssueException.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/user_ldap/lib/Exceptions/ConfigurationIssueException.php b/apps/user_ldap/lib/Exceptions/ConfigurationIssueException.php new file mode 100644 index 00000000000..efeb426b13d --- /dev/null +++ b/apps/user_ldap/lib/Exceptions/ConfigurationIssueException.php @@ -0,0 +1,15 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace OCA\User_LDAP\Exceptions; + +use OCP\HintException; + +class ConfigurationIssueException extends HintException { +} |