Package com.qfs.multiversion
Class UnknownBranchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.activeviam.fwk.ActiveViamRuntimeException
com.qfs.multiversion.UnknownBranchException
- All Implemented Interfaces:
Serializable
Runtime exception thrown when a reader requires a branch which never existed or has already been
abandoned by the multiversion holder.
- Author:
- ActiveViam
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.UnknownBranchException(String message) Constructor.UnknownBranchException(String messageKey, Object... parameters) Constructor.UnknownBranchException(String message, Throwable cause) Constructor.UnknownBranchException(Throwable cause) Constructor.UnknownBranchException(Throwable exception, String messageKey, Object... parameters) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownBranchException
public UnknownBranchException()Default constructor. -
UnknownBranchException
Constructor.- Parameters:
message- the detailed message
-
UnknownBranchException
Constructor.- Parameters:
cause- the cause
-
UnknownBranchException
Constructor.- Parameters:
message- the detailed messagecause- the cause
-
UnknownBranchException
Constructor.- Parameters:
messageKey- message templateparameters- parameters to inject into the message template
-
UnknownBranchException
Constructor.- Parameters:
exception- the causemessageKey- message templateparameters- parameters to inject into the message template
-