summaryrefslogtreecommitdiff
path: root/app/Core/Ldap/ClientException.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-11-27 09:15:12 -0500
committerFrederic Guillot <fred@kanboard.net>2015-11-27 09:15:12 -0500
commit2451706316f08db2aa4b79730c02d297a5f5d59b (patch)
tree6fb8570e9a699f9838f481dfbd8c11302ddb2d7a /app/Core/Ldap/ClientException.php
parentf837e70a2d74eb37c4c5de7e4f54c8bf8ec78db7 (diff)
Add generic LDAP client library
Diffstat (limited to 'app/Core/Ldap/ClientException.php')
-rw-r--r--app/Core/Ldap/ClientException.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/Core/Ldap/ClientException.php b/app/Core/Ldap/ClientException.php
new file mode 100644
index 00000000..a0f9f842
--- /dev/null
+++ b/app/Core/Ldap/ClientException.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace Kanboard\Core\Ldap;
+
+use Exception;
+
+/**
+ * LDAP Client Exception
+ *
+ * @package ldap
+ * @author Frederic Guillot
+ */
+class ClientException extends Exception
+{
+}