summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2013-07-23 14:36:13 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2013-07-23 14:36:13 +0000
commitf7f46933a5a69f9c885fd11036caccf6dad56f48 (patch)
tree7f9e4962cede69f05016909a109716b43a0e8e9d /qpid/java
parentb6dbb3dec7079e4f3ddae91385ad03265d5805c3 (diff)
downloadqpid-python-f7f46933a5a69f9c885fd11036caccf6dad56f48.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@1506068 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java b/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
index b471eeb192..b26d67783d 100644
--- a/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
+++ b/qpid/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:'");
}
}
}