Class MissingObjectException

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

public class MissingObjectException extends IOException
An expected object is missing.
See Also:
  • Field Details

  • Constructor Details

    • MissingObjectException

      public MissingObjectException(ObjectId id, String type)
      Construct a MissingObjectException for the specified object id. Expected type is reported to simplify tracking down the problem.
      Parameters:
      id - SHA-1
      type - object type
    • MissingObjectException

      public MissingObjectException(ObjectId id, int type)
      Construct a MissingObjectException for the specified object id. Expected type is reported to simplify tracking down the problem.
      Parameters:
      id - SHA-1
      type - object type
    • MissingObjectException

      public MissingObjectException(AbbreviatedObjectId id, int type)
      Construct a MissingObjectException for the specified object id. Expected type is reported to simplify tracking down the problem.
      Parameters:
      id - SHA-1
      type - object type
  • Method Details

    • getObjectId

      public ObjectId getObjectId()
      Get the ObjectId that was not found
      Returns:
      the ObjectId that was not found