/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package multicastserversample; /** * */ public class Main { /** * @param args the command line arguments * @throws java.lang.Exception */ public static void main(String[] args) throws Exception { Receiver receiver = new Receiver(); receiver.receive(); } }