ca.nengo
Class NengoException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by ca.nengo.NengoException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
SimulationException, StructuralException

public class NengoException
extends java.lang.Exception

A Computational Neuroscience exception. This type is the parent of all exceptions defined in this simulator software.

Author:
Bryan Tripp
See Also:
Serialized Form

Constructor Summary
NengoException(java.lang.String message)
           
NengoException(java.lang.String message, java.lang.Throwable cause)
           
NengoException(java.lang.Throwable cause)
           
 
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

NengoException

public NengoException(java.lang.String message)
Parameters:
message - Text explanation of the exception.

NengoException

public NengoException(java.lang.Throwable cause)
Parameters:
cause - Another throwable that indicates a problem underlying this exception.

NengoException

public NengoException(java.lang.String message,
                      java.lang.Throwable cause)
Parameters:
message - Text explanation of the exception.
cause - Another throwable that indicates a problem underlying this exception.