12345678910111213141516171819202122232425262728293031323334 |
- /**
- *
- */
- package com.yihu.main;
- import com.yihu.base.ConfigUtil;
- /**
- * @author chenwu
- *
- */
- public class Shutdown {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- try {
- System.exit(0);
- } catch (Exception e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- }
|