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

📄 circularbufferexception.java

📁 利用JAVA编写的群体机器人局部通讯完成一定得队形控制
💻 JAVA
字号:
/* * CircularBufferException.java */package EDU.gatech.cc.is.util;/** * Signals that an execption of some sort has occured in a FunctionApproximator. * <P> * Copyright (c)2000 Tucker Balch * * @author Tucker Balch (tucker@cc.gatech.edu) * @version $Revision: 1.2 $ */public class CircularBufferException extends Exception 	{    	/**     	 * Constructs a <code>CircularBufferException</code> with no     	 * detail message.      	 */    	public CircularBufferException() 		{        	super();    		}    	/**     	 * Constructs a <code>CircularBufferException</code> with a     	 * specified detail message.     	 *     	 * @param      s  the detail message.     	 */     	public CircularBufferException( String msg ) 		{         	super(msg);     		}	}

⌨️ 快捷键说明

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