Updated Client Library
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@86320 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
71c52df975
commit
d68ba422e0
|
@ -674,9 +674,9 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
|||
case FAILED:
|
||||
if (task.getResult() != null) {
|
||||
logger.debug("Task exception:"
|
||||
+ task.getErrorMessage());
|
||||
+ task.getErrorCause());
|
||||
importMonitor
|
||||
.setError(new Throwable(task.getErrorMessage()));
|
||||
.setError(task.getErrorCause());
|
||||
} else {
|
||||
logger.debug("Task exception: Error In Import");
|
||||
importMonitor.setError(new Throwable(
|
||||
|
@ -1019,9 +1019,9 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
|||
case FAILED:
|
||||
if (task.getResult() != null) {
|
||||
logger.debug("Task exception:"
|
||||
+ task.getErrorMessage());
|
||||
+ task.getErrorCause());
|
||||
importMonitor
|
||||
.setError(new Throwable(task.getErrorMessage()));
|
||||
.setError(new Throwable(task.getErrorCause()));
|
||||
} else {
|
||||
logger.debug("Task exception: Error In Import");
|
||||
importMonitor.setError(new Throwable(
|
||||
|
|
Loading…
Reference in New Issue