Package org.eclipse.jgit.errors
Class UnmergedPathException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.errors.UnmergedPathException
-
- All Implemented Interfaces:
java.io.Serializable
public class UnmergedPathException extends java.io.IOException
Indicates one or more paths in a DirCache have non-zero stages present.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private DirCacheEntry
entry
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description UnmergedPathException(DirCacheEntry dce)
Create a new unmerged path exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DirCacheEntry
getDirCacheEntry()
Get the first non-zero stage of the unmerged path
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
entry
private final DirCacheEntry entry
-
-
Constructor Detail
-
UnmergedPathException
public UnmergedPathException(DirCacheEntry dce)
Create a new unmerged path exception.- Parameters:
dce
- the first non-zero stage of the unmerged path.
-
-
Method Detail
-
getDirCacheEntry
public DirCacheEntry getDirCacheEntry()
Get the first non-zero stage of the unmerged path- Returns:
- the first non-zero stage of the unmerged path
-
-