nitfsruntimeexception.java

来自「world wind java sdk 源码」· Java 代码 · 共 58 行

JAVA
58
字号
package gov.nasa.worldwind.formats.nitfs;import gov.nasa.worldwind.util.Logging;/*Copyright (C) 2001, 2007 United States Governmentas represented by the Administrator of theNational Aeronautics and Space Administration.All Rights Reserved.*//** * @author Lado Garakanidze * @version $Id: NitfsRuntimeException Mar 31, 2007 7:41:31 AM */public final class NITFSRuntimeException extends java.lang.RuntimeException{    public NITFSRuntimeException()    {        super();    }    public NITFSRuntimeException(String messageID)    {        super(Logging.getMessage(messageID));        log(this.getMessage());    }    public NITFSRuntimeException(String messageID, String params)    {        super(Logging.getMessage(messageID) + params);        log(this.getMessage());    }    public NITFSRuntimeException(Throwable throwable)    {        super(throwable);        log(this.getMessage());    }    public NITFSRuntimeException(String messageID, Throwable throwable)    {        super(Logging.getMessage(messageID), throwable);        log(this.getMessage());    }    public NITFSRuntimeException(String messageID, String params, Throwable throwable)    {        super(Logging.getMessage(messageID) + params, throwable);        log(this.getMessage());    }    // TODO: Calling the logger from here causes the wrong method to be listed in the log record. Must call the    // logger from the site with the problem and generating the exception.    private void log(String s)    {        Logging.logger().fine(s);    }}

⌨️ 快捷键说明

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