neuraldataerror.java

来自「VHDL制作的ann的code」· Java 代码 · 共 33 行

JAVA
33
字号
package org.encog.neural.data;

/**
 * NeuralNetworkError: Used by the neural network classes to 
 * indicate an error.
 */
public class NeuralDataError extends RuntimeException {
	/**
	 * Serial id for this class.
	 */
	private static final long serialVersionUID = 7167228729133120101L;

	/**
	 * Construct a message exception.
	 * 
	 * @param msg
	 *            The exception message.
	 */
	public NeuralDataError(final String msg) {
		super(msg);
	}

	/**
	 * Construct an exception that holds another exception.
	 * 
	 * @param t
	 *            The other exception.
	 */
	public NeuralDataError(final Throwable t) {
		super(t);
	}
}

⌨️ 快捷键说明

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