PROTON-2462 Fix error message for stream receiver AmqpValue body types
diff --git a/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/impl/ClientStreamReceiverMessage.java b/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/impl/ClientStreamReceiverMessage.java
index 7932500..269a00a 100644
--- a/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/impl/ClientStreamReceiverMessage.java
+++ b/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/impl/ClientStreamReceiverMessage.java
@@ -903,7 +903,7 @@
 
         @Override
         protected void validateAndScanNextSection() throws ClientException {
-            throw new DecodeException("Cannot read the payload of an AMQP Sequence payload.");
+            throw new DecodeException("Cannot read the binary payload of an AMQP Sequence body.");
         }
     }
 
@@ -922,7 +922,7 @@
 
         @Override
         protected void validateAndScanNextSection() throws ClientException {
-            throw new DecodeException("Cannot read the payload of an AMQP Sequence payload.");
+            throw new DecodeException("Cannot read the binary payload of an AMQP Value body.");
         }
     }
 }