📄 wwruntimeexception.java
字号:
/*Copyright (C) 2001, 2006 United States Governmentas represented by the Administrator of theNational Aeronautics and Space Administration.All Rights Reserved.*/package gov.nasa.worldwind.exception;/** * @author Tom Gaskins * @version $Id: WWRuntimeException.java 2422 2007-07-25 23:07:49Z tgaskins $ */public class WWRuntimeException extends RuntimeException{ public WWRuntimeException() { } public WWRuntimeException(String s) { super(s); } public WWRuntimeException(String s, Throwable throwable) { super(s, throwable); } public WWRuntimeException(Throwable throwable) { super(throwable); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -