⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 defaultexceptionhandler.java

📁 Java 3D Desktop Environment旨在使用Java 3D来创建一个3D桌面环境。功能包括:分布式的应用程序
💻 JAVA
字号:
package org.j3de.exception;         

import java.lang.reflect.InvocationTargetException;

import javax.swing.SwingUtilities;
import javax.swing.JOptionPane;

public class DefaultExceptionHandler extends ExceptionHandler {

  protected void handleExceptionImpl(final Exception e) {
    Runnable showException = new Runnable() {
      public void run() {                                   
        e.printStackTrace();
        JOptionPane.showMessageDialog(null, e, e.getMessage(), JOptionPane.ERROR_MESSAGE);
      }
    };

    SwingUtilities.invokeLater(showException);
  }

  protected void handleFatalExceptionImpl(final Exception e) {
    Runnable showException = new Runnable() {
      public void run() {                                   
        e.printStackTrace();
        JOptionPane.showMessageDialog(null, e, e.getMessage(), JOptionPane.ERROR_MESSAGE);    
      }
    };
   
    try {
      SwingUtilities.invokeAndWait(showException);      
    } catch (InterruptedException ex) {
      ex.printStackTrace();
    } catch (InvocationTargetException ex) {
      ex.printStackTrace();
    }
  }  
  
  protected void handleWarningImpl(final String msg) {
    Runnable showException = new Runnable() {
      public void run() {                                   
        JOptionPane.showMessageDialog(null, msg, "Warning", JOptionPane.WARNING_MESSAGE);    
      }
    };

    SwingUtilities.invokeLater(showException);
  }


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -