From d1da1f8bb714a78c1114f92a8499a558ddba96ab Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 14 Mar 2016 21:11:37 +0000 Subject: [PATCH] Fix class not found error --- api/src/Accounts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/Accounts.php b/api/src/Accounts.php index a95a74ab12..ac2dece33c 100644 --- a/api/src/Accounts.php +++ b/api/src/Accounts.php @@ -1114,11 +1114,11 @@ class Accounts * @param int $account_id * @param boolean $need_active =false true = 'members-active' required * @return array - * @throws egw_exception_wrong_parameter if no integer was passed as $account_id + * @throws Exception\WrongParameter if no integer was passed as $account_id */ static function cache_read($account_id, $need_active=false) { - if (!is_numeric($account_id)) throw new egw_exception_wrong_parameter('Not an integer!'); + if (!is_numeric($account_id)) throw new Exception\WrongParameter('Not an integer!'); $account =& self::$request_cache[$account_id];