diff --git a/src/edu/nps/moves/dis7/examples/EspduSender.java b/src/edu/nps/moves/dis7/examples/EspduSender.java index 1deb0e8e3534881ee075e4a4655df139711dbda0..57c5a6a93e5cb2393c9997864dcb3b8f5a6e2906 100644 --- a/src/edu/nps/moves/dis7/examples/EspduSender.java +++ b/src/edu/nps/moves/dis7/examples/EspduSender.java @@ -93,7 +93,7 @@ public class EspduSender else if (networkModeString.equalsIgnoreCase("multicast")) { mode = NetworkMode.MULTICAST; if (!destinationIp.isMulticastAddress()) { - throw new RuntimeException("Sending to multicast address, but destination address " + destinationIp.toString() + "is not multicast"); + throw new RuntimeException("Sending to multicast address, but destination address " + destinationIp.toString() + " is not multicast"); } InetSocketAddress group = new InetSocketAddress(destinationIp, port);