Package org.eclipse.jgit.api.errors
Class MultipleParentsNotAllowedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.api.errors.GitAPIException
-
- org.eclipse.jgit.api.errors.MultipleParentsNotAllowedException
-
- All Implemented Interfaces:
Serializable
public class MultipleParentsNotAllowedException extends GitAPIException
The commit to be cherry-pick'ed did not have exactly one parent- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MultipleParentsNotAllowedException(String message)
Constructor for MultipleParentsNotAllowedException.MultipleParentsNotAllowedException(String message, Throwable cause)
Constructor for MultipleParentsNotAllowedException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MultipleParentsNotAllowedException
public MultipleParentsNotAllowedException(String message, Throwable cause)
Constructor for MultipleParentsNotAllowedException.- Parameters:
message
- error messagecause
- aThrowable
-
MultipleParentsNotAllowedException
public MultipleParentsNotAllowedException(String message)
Constructor for MultipleParentsNotAllowedException.- Parameters:
message
- error message
-
-