diff options
author | rojaro <> | 2010-03-29 08:42:24 +0000 |
---|---|---|
committer | rojaro <> | 2010-03-29 08:42:24 +0000 |
commit | 7cdd0fea2ae055fd026e4f9925781b72be9120dd (patch) | |
tree | f13f936c0d3bb3759986f31f012661afdc2ed31c | |
parent | 25da68e77f96e99955900192b5bff21782cc73d7 (diff) |
fixed a little bug in the rpc service
-rw-r--r-- | framework/Web/Services/TRpcService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/Services/TRpcService.php b/framework/Web/Services/TRpcService.php index 78fc927a..8cc0987c 100644 --- a/framework/Web/Services/TRpcService.php +++ b/framework/Web/Services/TRpcService.php @@ -276,7 +276,7 @@ abstract class TRpcProtocol // abstracts abstract public function callMethod($requestPayload); - abstract public function createErrorResponse($exception); + abstract public function createErrorResponse(TRpcException $exception); abstract public function createResponseHeaders($response); abstract public function encode($data); abstract public function decode($data); |