Package org.eclipse.jgit.api.errors
Class PatchFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.api.errors.GitAPIException
-
- org.eclipse.jgit.api.errors.PatchFormatException
-
- All Implemented Interfaces:
java.io.Serializable
public class PatchFormatException extends GitAPIException
Exception thrown when applying a patch fails due to an invalid format- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PatchFormatException(java.util.List<FormatError> errors)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<FormatError>
getErrors()
-
-
-
Constructor Detail
-
PatchFormatException
public PatchFormatException(java.util.List<FormatError> errors)
- Parameters:
errors
-
-
-
Method Detail
-
getErrors
public java.util.List<FormatError> getErrors()
- Returns:
- all the errors where unresolved conflicts have been detected
-
-