diff options
author | 2016-10-31 15:17:09 +0800 | |
---|---|---|
committer | 2016-10-31 15:17:09 +0800 | |
commit | 06d9f5cb26d3480c10c40e04b44acdbdcdc59d33 (patch) | |
tree | e182300ea437f8579e0400b309222e708033d6d4 /servicegateway/service | |
parent | fb502a095b9d6dfa57dc9ee01d06d45edff46ae2 (diff) |
Issue ID:GSO-83
Change-Id: I1d607d0e95cfa9ff55726a8054b6c096d3c3adea
Signed-off-by: j00302280 <j00101220@huawei.com>
Diffstat (limited to 'servicegateway/service')
-rw-r--r-- | servicegateway/service/src/main/java/org/openo/gso/gui/servicegateway/util/http/ResponseUtils.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servicegateway/service/src/main/java/org/openo/gso/gui/servicegateway/util/http/ResponseUtils.java b/servicegateway/service/src/main/java/org/openo/gso/gui/servicegateway/util/http/ResponseUtils.java index 05d4f0f9..eb753aa8 100644 --- a/servicegateway/service/src/main/java/org/openo/gso/gui/servicegateway/util/http/ResponseUtils.java +++ b/servicegateway/service/src/main/java/org/openo/gso/gui/servicegateway/util/http/ResponseUtils.java @@ -16,6 +16,7 @@ package org.openo.gso.gui.servicegateway.util.http; +import java.util.Arrays; import java.util.HashMap; import java.util.LinkedList; import java.util.List; @@ -148,11 +149,10 @@ public class ResponseUtils { result.put(Constant.RESPONSE_STATUS_DESCRIPTION, status); } else { if((null != exception.getExceptionArgs()) && (null != exception.getExceptionArgs().getDescArgs())) { - result.put(Constant.RESPONSE_STATUS_DESCRIPTION, exception.getExceptionArgs().getDescArgs().toString()); + result.put(Constant.RESPONSE_STATUS_DESCRIPTION, Arrays.asList(exception.getExceptionArgs().getDescArgs()).toString()); } } result.put(Constant.RESPONSE_ERRORCODE, errorCode); - return result; } |