?? neuraldataerror.java
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -