525354555657585960
if (name.equalsIgnoreCase("http")) { return 80; } else if (name.equalsIgnoreCase("https")) { return 443; } else { throw new UnsupportedSchemeException(name + " protocol is not supported"); } } }
291292293294295296297298299300301
if (reg.exists(full)) { return reg.lastModified(full); } } } throw new UnsupportedSchemeException(uri.toString()); } catch (URISyntaxException e) { throw new BadURIException(e); } }
312313314315316317318319320321322
} } throw new FileNotFoundException(uri.toASCIIString()); } throw new UnsupportedSchemeException(uri.toString()); } catch (URISyntaxException e) { throw new BadURIException(e); } }