Class GeneralSearchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.sourceforge.jbizmo.commons.search.exception.GeneralSearchException
- All Implemented Interfaces:
Serializable
General exception that is thrown if a search operation has failed
Copyright 2010 (C) by Martin Ganserer
- Version:
- 1.0.0
- Author:
- Martin Ganserer
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructorGeneralSearchException(String message) ConstructorGeneralSearchException(String message, Throwable cause) ConstructorGeneralSearchException(Throwable cause) ConstructorGeneralSearchException(Throwable cause, boolean extractRootCauseMessage) Constructor that initializes the exception with the message of the root cause -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
GeneralSearchException
public GeneralSearchException()Constructor -
GeneralSearchException
Constructor- Parameters:
message- the error message
-
GeneralSearchException
Constructor- Parameters:
cause- the cause of the exception
-
GeneralSearchException
Constructor- Parameters:
message- the error messagecause- the cause of the exception
-
GeneralSearchException
Constructor that initializes the exception with the message of the root cause- Parameters:
cause- the cause of the exceptionextractRootCauseMessage- is only necessary to have a different method signature
-