From: Jan Schneider Date: Thu, 20 May 2010 17:16:53 +0000 (+0200) Subject: Include class name in exception message. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d8ae9c5e11010efc9fcd4503d700ea26532f147a;p=horde.git Include class name in exception message. --- 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 . '"'); }