📄 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 + -