SyntaxFix
Write A Post
Hire A Developer
Questions
If you aren't on java 7, you can extract your exception handling to a method - that way you can at least minimize duplication
try { // try something } catch(ExtendsRuntimeException e) { handleError(e); } catch(Exception e) { handleError(e); }