Class NoMergeBaseException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.eclipse.jgit.errors.NoMergeBaseException
All Implemented Interfaces:
Serializable

public class NoMergeBaseException extends IOException
Exception thrown if a merge fails because no merge base could be determined.
Since:
3.0
See Also:
  • Constructor Details

    • NoMergeBaseException

      public NoMergeBaseException(NoMergeBaseException.MergeBaseFailureReason reason, String message)
      Construct a NoMergeBase exception
      Parameters:
      reason - the reason why no merge base could be found
      message - a text describing the problem
    • NoMergeBaseException

      public NoMergeBaseException(NoMergeBaseException.MergeBaseFailureReason reason, String message, Throwable why)
      Construct a NoMergeBase exception
      Parameters:
      reason - the reason why no merge base could be found
      message - a text describing the problem
      why - an exception causing this error
  • Method Details