Fixed Error Management

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@101910 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-12-04 17:12:46 +00:00
parent ccc0add663
commit 2d6b51a133
2 changed files with 26 additions and 25 deletions

View File

@ -997,8 +997,8 @@ public class TabularDataController {
@Override
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1042,8 +1042,8 @@ public class TabularDataController {
@Override
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1087,8 +1087,8 @@ public class TabularDataController {
@Override
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1114,8 +1114,8 @@ public class TabularDataController {
exportWizard.addListener(new WizardListener() {
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1154,8 +1154,8 @@ public class TabularDataController {
extractCodelistWizard.addListener(new WizardListener() {
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1194,8 +1194,8 @@ public class TabularDataController {
codelistMappingWizard.addListener(new WizardListener() {
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1234,8 +1234,8 @@ public class TabularDataController {
unionWizard.addListener(new WizardListener() {
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1282,8 +1282,8 @@ public class TabularDataController {
replaceByExternalColWizard.addListener(new WizardListener() {
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1322,8 +1322,8 @@ public class TabularDataController {
chartWizard.addListener(new WizardListener() {
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1361,8 +1361,8 @@ public class TabularDataController {
mapWizard.addListener(new WizardListener() {
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1420,8 +1420,8 @@ public class TabularDataController {
}
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}
@ -1453,8 +1453,8 @@ public class TabularDataController {
importWizard.addListener(new WizardListener() {
public void failed(String title, String message,
Throwable throwable) {
UtilsGXT3.alert(title, message);
String details, Throwable throwable) {
UtilsGXT3.alert(title, message+" "+details);
resumeUIState();
}

View File

@ -81,10 +81,11 @@
<set-property name="log_SystemLogger" value="ENABLED" /> -->
<!-- Not in GWT 2.6 <set-property name="log_FirebugLogger" value="ENABLED" /> -->
<set-property name="log_DivLogger" value="DISABLED" />
<set-property name="log_ConsoleLogger" value="DISABLED" />
<set-property name="log_GWTLogger" value="DISABLED" />
<set-property name="log_SystemLogger" value="DISABLED" />
<set-property name="log_SystemLogger" value="DISABLED" />
<!-- Not in GWT 2.6 <set-property name="log_FirebugLogger" value="DISABLED" /> -->
<!-- Specify the paths for translatable code -->