emptyheapexception.java
来自「这是一款基于PlaceLab软件开发的导航系统中间件的客户端程序.」· Java 代码 · 共 24 行
JAVA
24 行
package org.placelab.util.ns1;/*** This exception signifies an invalid access on an empty heap.* We subclass UndeflowException because this is a type of* underflow. However, it is nice, since exceptions are* dispatched on type, to make a more specific exception so* we have more information on what happened if/when we try* to handle the error.** **/public class EmptyHeapException extends UnderflowException { public EmptyHeapException() {} public EmptyHeapException(String message) { //super(message); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?