summaryrefslogtreecommitdiff
path: root/app/Core/Ldap/ConnectionException.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-05 19:34:12 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-05 19:34:12 -0500
commit3e1b1e02494f7bc4512a355cc6a198b7786f8cfe (patch)
tree0f0d456e34c408e691e2a88ecf7a9af6ddda4fa7 /app/Core/Ldap/ConnectionException.php
parent53b0c7bda9a7dd1a7c36d44987bba1329b3890bb (diff)
Improve LDAP error reporting
Diffstat (limited to 'app/Core/Ldap/ConnectionException.php')
-rw-r--r--app/Core/Ldap/ConnectionException.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/Core/Ldap/ConnectionException.php b/app/Core/Ldap/ConnectionException.php
new file mode 100644
index 00000000..8d6a4959
--- /dev/null
+++ b/app/Core/Ldap/ConnectionException.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace Kanboard\Core\Ldap;
+
+use Exception;
+
+/**
+ * LDAP Connection Exception
+ *
+ * @package ldap
+ * @author Frederic Guillot
+ */
+class ConnectionException extends Exception
+{
+}