functionapproximatorexception.java

来自「利用JAVA编写的群体机器人局部通讯完成一定得队形控制」· Java 代码 · 共 37 行

JAVA
37
字号
/* * FunctionApproximatorException.java */package EDU.gatech.cc.is.learning;import java.io.Serializable;/** * Signals that an execption of some sort has occured in a FunctionApproximator. * <P> * Copyright (c)1997 Georgia Tech Research Corporation * * @author Juan Carlos Santamaria (carlos@cc.gatech.edu) * @version $Revision: 1.1 $ */public class FunctionApproximatorException extends Exception {    /**     * Constructs an <code>FunctionApproximatorException</code> with no     * detail message.      */    public FunctionApproximatorException() {        super();    }    /**     * Constructs an <code>FunctionApproximatorException</code> with a     * specified detail message.     *     * @param      s  the detail message.     */     public FunctionApproximatorException( String msg ) {         super(msg);     }}

⌨️ 快捷键说明

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