To know what is your exception class name, in case you want to have a more specific catch.
1 2 3 4 | } catch (Exception e){ LOG.error("SQL error when processing " + requestId+". Exception class:"+ e.getClass().getCanonicalName()); throw(e); } |
To know what is your exception class name, in case you want to have a more specific catch.
1 2 3 4 | } catch (Exception e){ LOG.error("SQL error when processing " + requestId+". Exception class:"+ e.getClass().getCanonicalName()); throw(e); } |