|
|
|
@ -1,5 +1,7 @@
|
|
|
|
|
package com.fr.start; |
|
|
|
|
|
|
|
|
|
import com.fr.exit.DesignerExiter; |
|
|
|
|
import com.fr.process.engine.FineProcessUtils; |
|
|
|
|
import com.fr.process.engine.core.FineProcessEntry; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -10,5 +12,20 @@ import com.fr.process.engine.core.FineProcessEntry;
|
|
|
|
|
* Created by hades on 2020/3/24 |
|
|
|
|
*/ |
|
|
|
|
public class FineDesigner extends FineProcessEntry { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
|
|
|
|
|
|
FineDesigner fineDesigner = new FineDesigner(); |
|
|
|
|
FineProcessUtils.run(fineDesigner, args); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void run(String[] args) { |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
super.run(args); |
|
|
|
|
} catch (Throwable throwable) { |
|
|
|
|
DesignerExiter.getInstance().exit(throwable); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|