Main @param args @throws IOException @throws InterruptedException
(String[] args)
| 102 | * @throws InterruptedException |
| 103 | */ |
| 104 | public static void main(String[] args) throws IOException, InterruptedException { |
| 105 | CommandLine cl = new CommandLine(new Main()); |
| 106 | cl.setDefaultValueProvider(new PropertiesDefaultProvider()); |
| 107 | int exitCode = cl.execute(args); |
| 108 | System.exit(exitCode); |
| 109 | } |
| 110 | |
| 111 | } |