wt.vc
Class VCBranchPointException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bywt.util.WTException
              extended bywt.vc.VersionControlException
                  extended bywt.vc.VCBranchPointException
All Implemented Interfaces:
ConflictHolder, LocalizableMessage, Message, Serializable

public class VCBranchPointException
extends VersionControlException
implements Serializable

This exception will be thrown when branch point iterations are attempted for deletion. This would hold WTHashSet of branch point iterations in deflated state.

Supported API: false

Extendable: false

See Also:
Serialized Form

Field Summary
private  WTHashSet branchPointItersSet
           
private static String CLASSNAME
           
private static String RESOURCE
           
 
Fields inherited from class wt.vc.VersionControlException
 
Fields inherited from class wt.util.WTException
GETMESSAGE_LINE_SEPARATOR, LINE_SEPARATOR, SPACE_SEPARATOR, TOSTRING_LINE_SEPARATOR
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Fields inherited from interface wt.conflict.ConflictHolder
CONFLICT_ELEMENTS
 
Constructor Summary
VCBranchPointException(WTHashSet a_branchPointItersSet)
          Construvtor which will take WTCollection of branch point iterations and will generate message for each object using multi-object constructor of WTException.
 
Method Summary
private static Object[] buildAdditionalMessages(WTHashSet a_branchPointItersSet)
           
 WTHashSet getBranchPointItersSet()
          Gets the value of the attribute: branchPointItersSet; WTHashSet of branch point iterations attempted for deletion.
 void setBranchPointItersSet(WTHashSet a_BranchPointItersSet)
          Sets the value of the attribute: branchPointItersSet; WTHashSet of branch point iterations attempted for deletion.
 
Methods inherited from class wt.vc.VersionControlException
getAllConflictingObjects, getConflictElements, setConflictElements
 
Methods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, printStackTrace, printStackTrace, printStackTrace, setLocalizedMessage, toString, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME

branchPointItersSet

private WTHashSet branchPointItersSet
Constructor Detail

VCBranchPointException

public VCBranchPointException(WTHashSet a_branchPointItersSet)
Construvtor which will take WTCollection of branch point iterations and will generate message for each object using multi-object constructor of WTException.

Supported API: false

Parameters:
a_branchPointItersSet - Collection of branch point iterations attempted for deletion.
Method Detail

getBranchPointItersSet

public WTHashSet getBranchPointItersSet()
Gets the value of the attribute: branchPointItersSet; WTHashSet of branch point iterations attempted for deletion. This collection will have iterations in deflated state.

Supported API: false

Returns:
WTHashSet

setBranchPointItersSet

public void setBranchPointItersSet(WTHashSet a_BranchPointItersSet)
                            throws WTPropertyVetoException
Sets the value of the attribute: branchPointItersSet; WTHashSet of branch point iterations attempted for deletion. This collection will have iterations in deflated state.

Supported API: false

Parameters:
a_BranchPointItersSet -
Throws:
WTPropertyVetoException

buildAdditionalMessages

private static Object[] buildAdditionalMessages(WTHashSet a_branchPointItersSet)