phpdoc
authorJan Schneider <jan@horde.org>
Wed, 15 Sep 2010 09:42:08 +0000 (11:42 +0200)
committerJan Schneider <jan@horde.org>
Fri, 17 Sep 2010 12:29:17 +0000 (14:29 +0200)
framework/Ldap/lib/Horde/Ldap.php
framework/Ldap/lib/Horde/Ldap/Exception.php

index 939fa4e..6ac2c59 100644 (file)
@@ -31,11 +31,11 @@ class Horde_Ldap
      * - filter:         default search filter.
      * - scope:          default search scope.
      * - auto_reconnect: if true, the class will automatically
-     * -                 attempt to reconnect to the LDAP server in certain
-     * -                 failure conditions when attempting a search, or other
-     * -                 LDAP operations.  Defaults to false.  Note that if you
-     * -                 set this to true, calls to search() may block
-     * -                 indefinitely if there is a catastrophic server failure.
+     *                   attempt to reconnect to the LDAP server in certain
+     *                   failure conditions when attempting a search, or other
+     *                   LDAP operations.  Defaults to false.  Note that if you
+     *                   set this to true, calls to search() may block
+     *                   indefinitely if there is a catastrophic server failure.
      * - min_backoff:    minimum reconnection delay period (in seconds).
      * - current_backof: initial reconnection delay period (in seconds).
      * - max_backoff:    maximum reconnection delay period (in seconds).
index 1b4598c..c6028db 100644 (file)
@@ -1,4 +1,16 @@
 <?php
-class Horde_Ldap_Exception extends Exception
+/**
+ * Exception handler for the Horde_Ldap library.
+ *
+ * Copyright 2010 The Horde Project (http://www.horde.org/)
+ *
+ * See the enclosed file COPYING for license information (LGPL). If you
+ * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
+ *
+ * @category Horde
+ * @package  Ldap
+ * @author   Ben Klang <ben@alkaloid.net>
+ */
+class Horde_Ldap_Exception extends Horde_Exception_Prior
 {
 }