文案调整

This commit is contained in:
xueli.xue 2017-05-25 22:10:44 +08:00
parent 25cf93fdc2
commit 419e1aee89
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ public class JettyClient {
logger.error(e.getMessage(), e);
RpcResponse rpcResponse = new RpcResponse();
rpcResponse.setError("Servet-error:" + e.getMessage());
rpcResponse.setError("Client-error:" + e.getMessage());
return rpcResponse;
}
}

View File

@ -60,7 +60,7 @@ public class JettyServerHandler extends AbstractHandler {
logger.error(e.getMessage(), e);
RpcResponse rpcResponse = new RpcResponse();
rpcResponse.setError("Servet-error:" + e.getMessage());
rpcResponse.setError("Server-error:" + e.getMessage());
return rpcResponse;
}
}