Class SearchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.uky.cs.nil.sabre.search.SearchException
- All Implemented Interfaces:
Serializable
A search exception is a
RuntimeException that will be caught if it
is thrown while a search is running. The
exception's message will be used as the
result message when the result of the search is
returned.- Author:
- Stephen G. Ware
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSearchException(String message) Constructs a new search exception with a given message.SearchException(String message, Throwable cause) Constructs a new search exception with a given message and cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SearchException
-
SearchException
Constructs a new search exception with a given message.- Parameters:
message- the exception's message
-