public static String processLoadException(SQLException e) throws SQLException {
        final String sqlState = e.getSQLState();
        if (sqlState != null && StringUtils.equalsIgnoreCase(sqlState,"s1000")) {
            SQLException f = e;
            StringBuilder s = new StringBuilder();