summaryrefslogtreecommitdiff
path: root/framework/Web/Services/TXmlRpcProtocol.php
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-22 09:14:12 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-22 09:14:12 +0100
commit5230f8f8a86fc1ae5d90f8c74ae65c93e197502b (patch)
treee870d29e21c14d5b1683d638dff978afe0a104fa /framework/Web/Services/TXmlRpcProtocol.php
parent53e4cd65205ac33d7dbc61a767f467c1b896dfc6 (diff)
Apply namespaces to class inheritances (pt1)
Diffstat (limited to 'framework/Web/Services/TXmlRpcProtocol.php')
-rw-r--r--framework/Web/Services/TXmlRpcProtocol.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/Services/TXmlRpcProtocol.php b/framework/Web/Services/TXmlRpcProtocol.php
index b200fe2e..9b62d7ab 100644
--- a/framework/Web/Services/TXmlRpcProtocol.php
+++ b/framework/Web/Services/TXmlRpcProtocol.php
@@ -9,6 +9,7 @@
*/
namespace Prado\Web\Services;
+use Prado\Exceptions\THttpException;
/**
* TXmlRpcProtocol class
@@ -80,7 +81,7 @@ class TXmlRpcProtocol extends TRpcProtocol
{
throw $e;
}
- catch(Exception $e)
+ catch(\Exception $e)
{
return $this->createErrorResponse(new TRpcException('An internal error occured'));
}