System.out.println("There is " + sbmlErrorLog.getErrorCount() + " errors in the model.\n");
// printErrors
for (int j = 0; j < sbmlErrorLog.getErrorCount(); j++) {
SBMLError error = sbmlErrorLog.getError(j);
System.out.println(error.toString() + "\n");
}
}