[
https://issues.apache.org/jira/browse/AMQNET-433?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Timothy Bish resolved AMQNET-433.
---------------------------------
Resolution: Fixed
Fix Version/s: 1.6.0
I fixed a couple cases that I found but without real patch I won't waste to
much time combing the code for these.
> Correctly rethrow exceptions without swallowing the stack trace
> ---------------------------------------------------------------
>
> Key: AMQNET-433
> URL: https://issues.apache.org/jira/browse/AMQNET-433
> Project: ActiveMQ .Net
> Issue Type: Bug
> Components: ActiveMQ
> Reporter: Daniel Marbach
> Assignee: Jim Gomes
> Priority: Trivial
> Fix For: 1.6.0
>
>
> When looking through the code I saw a lot of the following code snippets:
> try
> {
> }
> catch(AnyException ex)
> {
> // do something
> throw ex;
> }
> This WILL rewrite the stack trace and is not considered best practice. I
> suggest you change the appropriate places in the code to:
> try
> {
> }
> catch(AnyException ex)
> {
> // do something
> throw;
> }
--
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