} else
if (driverName.equals("V80Driver")) {
driver = new ApplicationDriverV80();
} else
if (driverName.equals("V82Driver")) {
driver = new ApplicationDriverV82();
} else {
throw new RuntimeException("Driver with name '" + driverName
+ "' not found. Choose: "
+ Arrays.toString(AVAILABLE_DRIVERS));
}