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:
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
-
-
Constructor Summary
Constructors Constructor Description InvalidRebaseStepException(String msg)
Constructor for InvalidRebaseStepException.InvalidRebaseStepException(String msg, Throwable cause)
Constructor for InvalidRebaseStepException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidRebaseStepException
public InvalidRebaseStepException(String msg)
Constructor for InvalidRebaseStepException.- Parameters:
msg
- error message
-
-