]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/noresultexception.php
Misses this file to merge. I like the comments.
[quix0rs-gnu-social.git] / lib / noresultexception.php
index 61e1a1f75a2ca42c1aeba4706d91938b39ce1fc7..2933a351222c2eca4c10eedf7c6193f23241b7cf 100644 (file)
@@ -20,7 +20,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @category  Exception
- * @package   GNUSocial
+ * @package   GNUsocial
  * @author    Mikael Nordfeldth <mmn@hethane.se>
  * @copyright 2013 Free Software Foundation, Inc.
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
@@ -31,9 +31,12 @@ if (!defined('GNUSOCIAL')) { exit(1); }
 
 class NoResultException extends ServerException
 {
-    public function __construct(DB_DataObject $obj)
+    public $obj;    // The object with query that gave no results
+
+    public function __construct(Memcached_DataObject $obj)
     {
+        $this->obj = $obj;
         // We could log an entry here with the search parameters
-        parent::__construct(_('No result found on lookup.'));
+        parent::__construct(sprintf(_('No result found on %s lookup.'), get_class($obj)));
     }
 }