Java通用异常处理类(3)_C/C++语言_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

Java通用异常处理类(3)

作者:黑客防线网安C/C++教程基地 来源:黑客防线网安C/C++教程基地 浏览次数:0

本篇关键词:处理异常通用 
黑客防线网安网讯:      void alert(Component parent){    alert(parent,"ThrowableManager Alerter");    }    /**    * Show the information in a dialog with the specified title.    *    * @param ti...
      void alert(Component parent){
    alert(parent,"ThrowableManager Alerter");
    }
    /**
    * Show the information in a dialog with the specified title.
    *
    * @param titleThe title of the dialog.
    */
    public synchronized void alert(String title){
    alert((Component)null,title);
    }
    /**
    * Show the information in a dialog which has the specified title and belongs to the
    * specified component.
    *
    * @param parentThe component cause the exception.
    * @param titleThe title of the dialog.
    */
    public synchronized void alert(Component parent,String title){
    StringBuilder errorMessage=new StringBuilder();
    errorMessage.append(this.toString());
    for (StackTraceElement st:((this.getCause()==null)?this:this.getCause()).getStackTrace()){
    errorMessage.append("      at ");
    errorMessage.append(st.toString());
    }
    alerter.showMessageDialog(parent, errorMessage, title ,JOptionPane.ERROR_MESSAGE);
    System.err.println(errorMessage);
    }
    }
    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-14998-1.html
网站维护教程更新时间:2012-04-04 22:47:33  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer