throw new RuntimeException("Failed to create a valid input stream ", e);
}
} else if (tempURL.getProtocol().toLowerCase().startsWith("http")
|| tempURL.getProtocol().equalsIgnoreCase("dods")) {
try {
paramInput = new URIImageInputStreamImpl(tempURL.toURI());
} catch (URISyntaxException e) {
throw new RuntimeException("Failed to create a valid input stream ", e);
}
}
} else