爱问知识人 爱问教育 医院库

Java通用异常处理类有什么特点?

首页

Java通用异常处理类有什么特点?

Java通用异常处理类有什么特点?

提交回答

全部答案

    2018-04-04 07:10:55
  •   /**
    * (#)ThrowableManager。java1。0Apr 10, 2008
    *
    * Copyright 2007- wargrey , Inc。 All rights are reserved。
    */
    package net。
      wargrey。application; import java。awt。Component; import javax。swing。JOptionPane; /** * This class ExceptionManager and its subclasses are a form of * Exception。
       It is used to wrap all the Throwable instances * and handle them in a unified way。 It will show the information which consists of * StackTraces and Messages by using JOptionPanel。
       * * @version 1。0 * @see java。lang。Exception * @since jdk 1。5 */ public class ExceptionManager extends RuntimeException { /** * This field alerter is used to show the information the Class offered。
       * * @see javax。swing。JOptionPane */ private JOptionPane alerter; /** * This static method create an instance of the ExceptionManager by invoking the * constructor ExceptionManager(String msg)。
       * * @param msgThe message will pass the specified constructor * @returnAn instance of the ExceptionManager created by invoking the constructor * ExceptionManager(String msg)。
       */ public static ExceptionManager wrap(String msg){ return new ExceptionManager(msg); } /** * This static method create an instance of the ExceptionManager by invoking the * constructor ExceptionManager(Throwable throwable)。
       * * @param throwableThe cause will pass the specified constructor * @returnAn instance of the ExceptionManager created by invoking the constructor * ExceptionManager(Throwable throwable)。
       */ public static ExceptionManager wrap(Throwable throwable){ return new ExceptionManager(throwable); } /** * This static method create an instance of the ExceptionManager by invoking the * constructor ExceptionManager(String msg,Throwable throwable)。
       * * @param msgThe message will pass the specified constructor * @param throwableThe cause will pass the specified constructor * @returnAn instance of the ExceptionManager created by invoking the constructor * ExceptionManager(String msg, Throwable throwable) */ public static ExceptionManager wrap(String msg,Throwable throwable){ return new ExceptionManager(msg,throwable); } /** * Constructs a new instance with the specified detail message。
       The concrete handler * is its super class。 This constructor always used to construct a custom exception * not wrapping the exist exception。
       * * @param msgthe detail message which is the part of the information will be * shown。 */ public ExceptionManager(String msg){ super(msg); }。
      

    我***

    2018-04-04 07:10:55

类似问题

换一换

相关推荐

正在加载...
最新问答 推荐信息 热门专题 热点推荐
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200

热点检索

  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
返回
顶部
帮助 意见
反馈

确定举报此问题

举报原因(必选):