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:
java.io.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(java.util.List<java.lang.String> conflictingPaths, CheckoutConflictException e)
Translate internal exception to API exception
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>
getConflictingPaths()
-
-
-
Constructor Detail
-
CheckoutConflictException
public CheckoutConflictException(java.util.List<java.lang.String> conflictingPaths, CheckoutConflictException e)
Translate internal exception to API exception- Parameters:
conflictingPaths
- list of conflicting pathse
- aCheckoutConflictException
exception
-
-