MinicalcEncoder(String name, String password) throws IOException {
super(name, password);
try {
wb = new Workbook(name, password);
}
catch (JMCException e) {
Debug.log(Debug.ERROR, "new Workbook threw exception:" + e.getMessage());
throw new IOException(e.getMessage());
}