Change By: Daniel Lipp (08/Aug/13 3:30 PM)
Description: NestableException had been introduced before Exceptions could be nested out of the box (introduced with Java 1.4). Looks like we overlooked one place where we still used it: MgnlCommand#executeSynchronzide

{code}
try {
    success = cmd.execute((info.magnolia.context.Context) ctx);
} catch (Exception e) {
    throw new NestableException("Exception during executing command", e);
} finally {
    cmd.release();
}
{code}


The ugly consequence is that - in case of exceptions - we get unnecessarily long stack traces.
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira



----------------------------------------------------------------
For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <dev-list-unsubscr...@magnolia-cms.com>
----------------------------------------------------------------

Reply via email to