📄 wwunrecognizedexception.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 + -