Package de.offis.faint.gui.tools

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


        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

       
        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

TOP

Related Classes of de.offis.faint.gui.tools.ExceptionDialog

Copyright © 2018 www.massapicom. 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.