[JBoss JIRA] Created: (JBESB-660) OverriddenActionProcessor.process(Message) method hides ConfigurationException
by Philippe Ignace (JIRA)
OverriddenActionProcessor.process(Message) method hides ConfigurationException
--------------------------------------------------------------------------------
Key: JBESB-660
URL: http://jira.jboss.com/jira/browse/JBESB-660
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.2 Milestone Release 2
Environment: Linux, JBOSS-AS-4.2
Reporter: Philippe Ignace
Assigned To: Mark Little
org.jboss.soa.esb.listeners.message.OverriddenActionProcessor
public Message process(Message message) throws ActionProcessingException {
....
/* 93*/ catch(ConfigurationException ce) {
/* 95*/ throw new ActionProcessingException("Unexpected exception creating action class instance");
...
}
Ligne 95 should become :
/* 95 */ throw new ActionProcessingException("Unexpected exception creating action class instance",ce);
so that the complete message processor configuration exception get to the user (including the cause)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 4 months