Package org.eclipse.jgit.api.errors
Class CheckoutConflictException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.api.errors.GitAPIException
-
- org.eclipse.jgit.api.errors.CheckoutConflictException
-
- All Implemented Interfaces:
Serializable
public class CheckoutConflictException extends GitAPIException
Exception thrown when a command can't succeed because of unresolved conflicts.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckoutConflictException(List<String> conflictingPaths, CheckoutConflictException e)
Translate internal exception to API exception
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getConflictingPaths()
Get conflicting paths-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CheckoutConflictException
public CheckoutConflictException(List<String> conflictingPaths, CheckoutConflictException e)
Translate internal exception to API exception- Parameters:
conflictingPaths
- list of conflicting pathse
- aCheckoutConflictException
exception
-
-