ARTEMIS-1017 reword error message

reword error message when default destination for producer is not specified
This commit is contained in:
Jiri Danek 2017-03-04 18:08:15 +01:00 committed by Clebert Suconic
parent ffb7c5654a
commit 84dfa24e38
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,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");
}
}