bin.reset();
}
while ((fileLine = bin.readLine()) != null) {
if (fileLine.length() > 0) {
table = addSymbolTable(fileLine);
table.load(bin);
}
}
bin.close();
} catch (IOException e) {
throw new SymbolException("Could not load the symbol tables. ", e);