Package chemaxon.search.api
Class SearchTimeoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
chemaxon.search.api.SearchException
chemaxon.search.api.SearchTimeoutException
- All Implemented Interfaces:
Serializable
Exceptions indicating timeout during the search process. Timeouts may happen both regarding iteration step and time.
- Since:
- 5.6
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnullas its detail message.SearchTimeoutException(String message) Constructs a new exception with the specified detail message. -
Method Summary
Methods inherited from class chemaxon.search.api.SearchException
getMessageMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SearchTimeoutException
public SearchTimeoutException()Constructs a new exception withnullas its detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable). -
SearchTimeoutException
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- Parameters:
message- the detail message. The detail message is saved for later retrieval by theSearchException.getMessage()method.
-