import org.mxchange.jcore.client.gui.ClientFrame;
import org.mxchange.jcore.contact.Contact;
import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.exceptions.BadTokenException;
import org.mxchange.jcore.exceptions.FrameAlreadyInitializedException;
import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException;
// Init frame
this.frame.init();
- } catch (final FrameAlreadyInitializedException | UnsupportedDatabaseBackendException | SQLException ex) {
+
+ // Now start the frame
+ this.frame.setupFrame(this);
+ } catch (final FrameAlreadyInitializedException | UnsupportedDatabaseBackendException | IOException | BadTokenException | SQLException ex) {
// Abort program
this.abortProgramWithException(ex);
}
- // Now start the frame
- this.frame.setupFrame(this);
-
// Debug message
this.getLogger().trace("EXIT!"); //NOI18N
}