return parsePDBJsonResponse(responseString, jsonObj, pdbRestRequest);
} catch (Exception e)
{
+ if (e.getMessage()==null)
+ {
+ throw(e);
+ }
String exceptionMsg = e.getMessage();
if (exceptionMsg.contains("SocketException"))
{
int numFound = Integer
.valueOf(pdbResponse.get("numFound").toString());
List<Object> docs = (List<Object>) pdbResponse.get("docs");
- // add in any alphafold bits at the top
- result = AlphafoldRestClient.getFTSData(pdbRestRequest);
+
+ result = new ArrayList<FTSData>();
if (numFound > 0)
{