コード例 #1
0
ファイル: JSONFailure.java プロジェクト: Ropston/SpagoBI
 private static JSONObject createResponseContent(SpagoBIEngineServiceException exception)
     throws JSONException {
   JSONObject content = new JSONObject();
   content.put("message", exception.getMessage());
   return content;
 }