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.IllegalStateExceptionThrown 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.Stringpath1private java.lang.Stringpath2private static longserialVersionUID
-
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.StringgetPath1()Get one of the paths that has a conflictjava.lang.StringgetPath2()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
-
-