Author: lahiru
Date: Thu Jan 17 20:25:32 2013
New Revision: 1434899
URL: http://svn.apache.org/viewvc?rev=1434899&view=rev
Log:
fixing errorness scenario to make the node red.
Modified:
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/invoker/EmbeddedGFacInvoker.java
Modified:
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/invoker/EmbeddedGFacInvoker.java
URL:
http://svn.apache.org/viewvc/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/invoker/EmbeddedGFacInvoker.java?rev=1434899&r1=1434898&r2=1434899&view=diff
==============================================================================
---
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/invoker/EmbeddedGFacInvoker.java
(original)
+++
airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/invoker/EmbeddedGFacInvoker.java
Thu Jan 17 20:25:32 2013
@@ -314,8 +314,10 @@ public class EmbeddedGFacInvoker impleme
throw new WorkflowException(message, e);
} catch(ProviderException e){
this.notifier.invocationFailed(e.getMessage() + "\n" +
e.getAditionalInfo()[0],e);
+ throw new WorkflowException(e.getMessage(), e);
} catch (Exception e) {
this.notifier.invocationFailed(e.getMessage(),e);
+ throw new WorkflowException(e.getMessage(), e);
}
return true;
}