edu.columbia.cs.coms4701.search
Class SearchFailureException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by edu.columbia.cs.coms4701.search.SearchFailureException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
DepthCutoffSearchFailureException, RecursiveBestFirstSearchFailureException

public class SearchFailureException
extends java.lang.Exception

An error that occurs when a search algorithm fails to find a suitable path through a state space to solve a given problem.

Version:
0.1

User: aaron Date: Sep 11, 2006 Time: 8:22:35 PM

Author:
aaron@cs
See Also:
Serialized Form

Constructor Summary
SearchFailureException()
          Constructs a new generic SearchFailureException.
SearchFailureException(java.lang.String str)
          Constructs a new SearchFailureException with the given error message.
 
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

SearchFailureException

public SearchFailureException()
Constructs a new generic SearchFailureException.


SearchFailureException

public SearchFailureException(java.lang.String str)
Constructs a new SearchFailureException with the given error message.

Parameters:
str - the error message