(String[] args)
| 108 | } |
| 109 | |
| 110 | public static void main(String[] args) { |
| 111 | try { |
| 112 | SplitCsvFile mgr = new SplitCsvFile(); |
| 113 | mgr.process(args); |
| 114 | System.exit(0); |
| 115 | } catch (Exception e) { |
| 116 | System.out.println("Processing error occurred: " + e.getMessage()); |
| 117 | System.exit(-1); |
| 118 | } |
| 119 | } |
| 120 | } |
nothing calls this directly
no test coverage detected