Examples of ExceptionDialog


Examples of com.lightcrafts.app.ExceptionDialog

                SplashWindow.disposeSplash();
            }
            CheckForUpdate.showAlertIfAvailable();
        }
        catch ( Throwable t ) {
            (new ExceptionDialog()).handle( t );
        }
    }
View Full Code Here

Examples of com.lightcrafts.app.ExceptionDialog

            }
            SplashWindow.disposeSplash();
            CheckForUpdate.showAlertIfAvailable();
        }
        catch (Throwable t) {
            (new ExceptionDialog()).handle(t);
        }
    }
View Full Code Here

Examples of com.lightcrafts.app.ExceptionDialog

            ForkDaemon.start();
            Application.main(args);
            SplashWindow.disposeSplash();
        }
        catch (Throwable t) {
            (new ExceptionDialog()).handle(t);
        }
    }
View Full Code Here

Examples of de.offis.faint.gui.tools.ExceptionDialog

        AxisFault a = (AxisFault) e;
       
        // This fault seems to indicate that no faces were detected on image.
        if (!a.getFaultString().startsWith("System.Web.Services.Protocols.SoapException: Server was unable to process request."))
        {
          new ExceptionDialog(null, e, null);
          e.printStackTrace();
       
      }
    }
View Full Code Here

Examples of de.offis.faint.gui.tools.ExceptionDialog

        MainController.getInstance().getRecognitionHotSpot().serializeContent();
        MainController.getInstance().getFaceDB().writeToDisk();
    }
   
    } catch (Throwable t){
      new ExceptionDialog(mainFrame, t, "An error occured!");
      t.printStackTrace();
      mainFrame.setEnabled(true);
    }
  }
View Full Code Here

Examples of de.offis.faint.gui.tools.ExceptionDialog

       
        if (!isCancelled())
          publish("done.\nNumber of possible faces found: " + numFaces + "\n");
      }
      catch(Throwable t){
        new ExceptionDialog(mainFrame,t, "Detection failed");
        done();
      }
      return result;
    }
View Full Code Here

Examples of nodebox.ui.ExceptionDialog

                    t = get();
                } catch (Exception e) {
                    t = e;
                }
                if (t != null) {
                    ExceptionDialog ed = new ExceptionDialog(null, t);
                    ed.setVisible(true);
                    System.exit(-1);
                }

                if (documents.isEmpty() && filesToLoad.isEmpty()) {
                    instance.createNewDocument();
View Full Code Here

Examples of nodebox.ui.ExceptionDialog

        Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
            public void uncaughtException(Thread t, final Throwable e) {
                SwingUtilities.invokeLater(new Runnable() {
                    @Override
                    public void run() {
                        ExceptionDialog d = new ExceptionDialog(null, e);
                        d.setVisible(true);
                    }
                });
            }
        });
    }
View Full Code Here

Examples of nodebox.ui.ExceptionDialog

            addDocument(doc);
            NodeBoxMenuBar.addRecentFile(file);
            return doc;
        } catch (RuntimeException e) {
            logger.log(Level.SEVERE, "Error while loading " + file, e);
            ExceptionDialog d = new ExceptionDialog(null, e);
            d.setVisible(true);
            return null;
        }
    }
View Full Code Here

Examples of org.pentaho.reporting.designer.core.status.ExceptionDialog

        UncaughtExceptionsModel.getInstance().addException(e);
      }
      return true;
    }

    final ExceptionDialog exceptionDialog;
    final Window window = LibSwingUtil.getWindowAncestor(parent);
    if (window instanceof Dialog)
    {
      exceptionDialog = new ExceptionDialog((Dialog) window);
    }
    else if (window instanceof Frame)
    {
      exceptionDialog = new ExceptionDialog((Frame) window);
    }
    else
    {
      exceptionDialog = new ExceptionDialog();
    }
    exceptionDialog.showDialog();
    return false;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.