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

📄 wwunrecognizedexception.java

📁 world wind java sdk 源码
💻 JAVA
字号:
/*Copyright (C) 2001, 2009 United States Governmentas represented by the Administrator of theNational Aeronautics and Space Administration.All Rights Reserved.*/package gov.nasa.worldwind.exception;/** * Indicates that a value, request or other item or action is not recognized. * * @author tag * @version $Id: WWUnrecognizedException.java 9411 2009-03-16 21:03:25Z tgaskins $ */public class WWUnrecognizedException extends WWRuntimeException{    /**     * Construct an exception with a message string.     *     * @param msg the message.     */    public WWUnrecognizedException(String msg)    {        super(msg);    }    /**     * Construct an exception with a message string and a intial-cause exception.     *     * @param msg the message.     * @param t   the exception causing this exception.     */    public WWUnrecognizedException(String msg, Throwable t)    {        super(msg, t);    }}

⌨️ 快捷键说明

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