Package org.eclipse.jgit.errors
Class DirCacheNameConflictException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- org.eclipse.jgit.errors.DirCacheNameConflictException
-
- All Implemented Interfaces:
java.io.Serializable
public class DirCacheNameConflictException extends java.lang.IllegalStateException
Thrown by DirCache code when entries overlap in impossible way.- Since:
- 4.2
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
path1
private java.lang.String
path2
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DirCacheNameConflictException(java.lang.String path1, java.lang.String path2)
Construct an exception for a specific path.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getPath1()
Get one of the paths that has a conflictjava.lang.String
getPath2()
Get another path that has a conflict
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
path1
private final java.lang.String path1
-
path2
private final java.lang.String path2
-
-