Class SearchRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.lexmark.saperion.exceptions.EcmRuntimeException
com.lexmark.saperion.exceptions.runtime.SearchRuntimeException
- All Implemented Interfaces:
Serializable
public class SearchRuntimeException
extends com.lexmark.saperion.exceptions.EcmRuntimeException
This
client exception
indicates that a search failed in a context where checked exceptions
are prohibited.- Author:
- jschwarz
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSearchRuntimeException
(com.lexmark.saperion.exceptions.ErrorType errorType, Throwable cause) Creates a new exception with the given error code and exception cause.SearchRuntimeException
(String message, com.lexmark.saperion.exceptions.EcmException cause) Creates a new exception with the given exception cause and exception message. -
Method Summary
Methods inherited from class com.lexmark.saperion.exceptions.EcmRuntimeException
createError, getDescriptionParameters, getErrorCode, getErrorDetails
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SearchRuntimeException
Creates a new exception with the given exception cause and exception message.- Parameters:
message
- the exception messagecause
- the exception cause
-
SearchRuntimeException
Creates a new exception with the given error code and exception cause.- Parameters:
errorType
- the error informationcause
- the exception cause
-