@Produces({"text/html", "application/xml;q=0.9" })
public ReservationFailure handleReservationFailure(@QueryParam("code") String errorCode) {
LOG.info("Handling the reservation failure");
String message = ERROR_DESCRIPTIONS.get(errorCode);
return new ReservationFailure(message);
}