Nengo.ca

ca.nengo.model
Class StructuralException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by ca.nengo.NengoException
              extended by ca.nengo.model.StructuralException
All Implemented Interfaces:
java.io.Serializable

public class StructuralException
extends NengoException

A structural problem in setting up a Network.

See Also:
Serialized Form

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

StructuralException

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

StructuralException

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

StructuralException

public StructuralException(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.

Nengo.ca