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:
Serializable
Thrown by DirCache code when entries overlap in impossible way.
- Since:
- 4.2
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDirCacheNameConflictException
(String path1, String path2) Construct an exception for a specific path. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
path1
-
path2
-
-
Constructor Details
-
DirCacheNameConflictException
Construct an exception for a specific path.- Parameters:
path1
- one path that conflicts.path2
- another path that conflicts.
-
-
Method Details
-
getPath1
Get one of the paths that has a conflict- Returns:
- one of the paths that has a conflict
-
getPath2
Get another path that has a conflict- Returns:
- another path that has a conflict
-