The Encog Project

org.encog.persist
Class PersistError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.encog.persist.PersistError
All Implemented Interfaces:
java.io.Serializable

public class PersistError
extends java.lang.RuntimeException

General error class for Encog persistence.

Author:
jheaton
See Also:
Serialized Form

Constructor Summary
PersistError(java.lang.String msg)
          Construct a message exception.
PersistError(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

PersistError

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

Parameters:
msg - The exception message.

PersistError

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

Parameters:
t - The other exception.

The Encog Project