jAER project on SourceForge

ch.unizh.ini.jaer.projects.hopfield.matrix.exceptions
Class NeuralNetworkError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by ch.unizh.ini.jaer.projects.hopfield.matrix.exceptions.NeuralNetworkError
All Implemented Interfaces:
java.io.Serializable

public class NeuralNetworkError
extends java.lang.RuntimeException

NeuralNetworkError: Used by the neural network classes to indicate an error.

Version:
2.1
Author:
Jeff Heaton
See Also:
Serialized Form

Constructor Summary
NeuralNetworkError(java.lang.String msg)
          Construct a message exception.
NeuralNetworkError(java.lang.Throwable t)
          Construct an exception that holds another exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NeuralNetworkError

public NeuralNetworkError(java.lang.String msg)
Construct a message exception.

Parameters:
msg - The exception message.

NeuralNetworkError

public NeuralNetworkError(java.lang.Throwable t)
Construct an exception that holds another exception.

Parameters:
t - The other exception.

jAER project on SourceForge