assert(file.isFile());
fileSize = (int) file.length();
} catch (final FileNotFoundException e) {
try {
final String contents = JarReader.readFileFromJarfile(absolutePath.getPath());
fis = new StringInputStream(contents);
fileSize = contents.length();
}
catch (final Exception e2) {
final String msg = "Unable to locate classfile for " + realName;
throw compiler.new VoltCompilerException(msg);