Skip to content

Commit

Permalink
throw the exception
Browse files Browse the repository at this point in the history
  • Loading branch information
darkv committed Nov 5, 2013
1 parent b68bc38 commit f8eb344
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void openConnection(boolean verboseLogging) {
return;
} catch (NameNotFoundException ex) {
// javax.naming.NameNotFoundException -- no topic
new RuntimeException("Cannot find the topic with name \"" + _coordinator.configuration().topicName() + "\"."
throw new RuntimeException("Cannot find the topic with name \"" + _coordinator.configuration().topicName() + "\"."
+ "Please check if the JMS server is properly configured: " + ex.getMessage());
} catch (NamingException ex) {
if (verboseLogging) {
Expand Down

0 comments on commit f8eb344

Please sign in to comment.