Filter Content By
Version
Text Search
Languages
Error handling
Errors in the Gurobi Java interface are handled through the Java
exception mechanism. In the example, all Gurobi statements are
enclosed inside a try
block, and any associated errors would be
caught by the catch
block:
} catch (GRBException e) { System.out.println("Error code: " + e.getErrorCode() + ". " + e.getMessage()); }