Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public static void main( String[] args )
  2. {
  3. try
  4. {
  5. int exitCode = mainWithExitCode( args );
  6.  
  7. System.exit( exitCode );
  8. }
  9. catch ( Exception e )
  10. {
  11. e.printStackTrace();
  12.  
  13. System.exit( 100 );
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement