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
public class UnknownBranchException extends ActiveViamRuntimeException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownBranchException()Default 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 Detail
-
UnknownBranchException
public UnknownBranchException()
Default constructor.
-
UnknownBranchException
public UnknownBranchException(String message)
Constructor.- Parameters:
message- the detailed message
-
UnknownBranchException
public UnknownBranchException(Throwable cause)
Constructor.- Parameters:
cause- the cause
-
UnknownBranchException
public UnknownBranchException(String message, Throwable cause)
Constructor.- Parameters:
message- the detailed messagecause- the cause
-
UnknownBranchException
public UnknownBranchException(String messageKey, Object... parameters)
Constructor.- Parameters:
messageKey- message templateparameters- parameters to inject into the message template
-
-