Package org.eclipse.jgit.api.errors
Class InvalidRebaseStepException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.api.errors.GitAPIException
-
- org.eclipse.jgit.api.errors.InvalidRebaseStepException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidRebaseStepException extends GitAPIException
Exception thrown if a rebase step is invalid. E.g., a rebase must not start with squash or fixup.- Since:
- 3.2
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description InvalidRebaseStepException(java.lang.String msg)
Constructor for InvalidRebaseStepException.InvalidRebaseStepException(java.lang.String msg, java.lang.Throwable cause)
Constructor for InvalidRebaseStepException.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InvalidRebaseStepException
public InvalidRebaseStepException(java.lang.String msg)
Constructor for InvalidRebaseStepException.- Parameters:
msg
- error message
-
InvalidRebaseStepException
public InvalidRebaseStepException(java.lang.String msg, java.lang.Throwable cause)
Constructor for InvalidRebaseStepException.- Parameters:
msg
- error messagecause
- aThrowable
-
-