content = resource.getContent();
if (content != null && content instanceof String) {
// this is a .class file...
// no access to .class files through getResource() in 1.1
throw new SandboxSecurityException("getresource.noclassaccess", url.toString());
}
}
catch(IOException iOException) {
if(debug) System.err.println("#### AppletResourceConnection.getContent - exception:" + iOException);
}