int bugId = Integer.valueOf(bugIdentifier);
GetBug getBug = new GetBug(bugId);
try {
bzConnector.executeMethod(getBug);
} catch (Exception e) {
bzConnector = new BugzillaConnector();
try {
bzConnector.connectTo("https://bugzilla.redhat.com");
} catch (ConnectionException e2) {
e2.printStackTrace();
return "Failed to access BZ " + bugId + ": " + e2.getMessage();