ARTEMIS-1017 reword error message

reword error message when default destination for producer is not specified

(cherry picked from commit 84dfa24e38)
This commit is contained in:
Jiri Danek 2017-03-04 18:08:15 +01:00 committed by Clebert Suconic
parent a203e47c19
commit f6ea3f97b2
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ public class ActiveMQMessageProducer implements MessageProducer, QueueSender, To
*/
private void checkDefaultDestination() {
if (defaultDestination == null) {
throw new UnsupportedOperationException("Cannot specify destination if producer has a default destination");
throw new UnsupportedOperationException("Producer does not have a default destination");
}
}