diff options
| author | Rajith Muditha Attapattu <rajith@apache.org> | 2013-07-23 14:36:13 +0000 |
|---|---|---|
| committer | Rajith Muditha Attapattu <rajith@apache.org> | 2013-07-23 14:36:13 +0000 |
| commit | 046efc06ff702d77e0540c19502dc8333d6c2104 (patch) | |
| tree | d95da3cbabb16c701cb53aeb08f62be338079a58 /java/client/src | |
| parent | d6d1bc995ae5f753eb3a74945d3f35e1ef94caba (diff) | |
| download | qpid-python-046efc06ff702d77e0540c19502dc8333d6c2104.tar.gz | |
NO_JIRA Corrected the error message thrown when the message id is not of
the correct form.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1506068 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src')
| -rw-r--r-- | java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java b/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java index b471eeb192..b26d67783d 100644 --- a/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java +++ b/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java @@ -206,7 +206,7 @@ public class AMQMessageDelegate_0_10 extends AbstractAMQMessageDelegate } else { - throw new JMSException("MessageId '"+messageId+"' is not of the correct format, it must be ID: followed by a UUID"); + throw new JMSException("MessageId '"+messageId+"' is not of the correct format, it must be prefixed with 'ID:'"); } } } |
