wwabsentrequirementexception.java
来自「world wind java sdk 源码」· Java 代码 · 共 35 行
JAVA
35 行
/*Copyright (C) 2001, 2008 United States Governmentas represented by the Administrator of theNational Aeronautics and Space Administration.All Rights Reserved.*/package gov.nasa.worldwind.exception;/** * @author tag * @version $Id: WWAbsentRequirementException.java 6887 2008-10-01 21:09:05Z tgaskins $ */public class WWAbsentRequirementException extends WWRuntimeException{ public WWAbsentRequirementException() { } public WWAbsentRequirementException(String s) { super(s); } public WWAbsentRequirementException(String s, Throwable throwable) { super(s, throwable); } public WWAbsentRequirementException(Throwable throwable) { super(throwable); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?