public static String processDumpException(SQLException sqlException) throws SQLException {
        final String sqlState = sqlException.getSQLState();

        if (sqlState != null && StringUtils.equalsIgnoreCase(sqlState, "s1000")) {
            SQLException f = sqlException;