From d8ae9c5e11010efc9fcd4503d700ea26532f147a Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Thu, 20 May 2010 19:16:53 +0200 Subject: [PATCH] Include class name in exception message. --- framework/Db/lib/Horde/Db/Adapter/Base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Db/lib/Horde/Db/Adapter/Base.php b/framework/Db/lib/Horde/Db/Adapter/Base.php index bff9c384f..bd65cdb0c 100644 --- a/framework/Db/lib/Horde/Db/Adapter/Base.php +++ b/framework/Db/lib/Horde/Db/Adapter/Base.php @@ -245,7 +245,7 @@ abstract class Horde_Db_Adapter_Base return call_user_func_array(array($this->_schema, $method), $args); } - throw new BadMethodCallException('Call to undeclared method "' . $method . '"'); + throw new BadMethodCallException('Call to undeclared method "' . get_class($this) . '::' . $method . '"'); } -- 2.11.0