Package org.eclipse.jgit.errors
Class PackInvalidException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.eclipse.jgit.errors.PackInvalidException
- All Implemented Interfaces:
Serializable
Thrown when a Pack previously failed and is known to be unusable
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPackInvalidException
(File path) Deprecated.PackInvalidException
(File path, Throwable cause) Construct a pack invalid error with cause.PackInvalidException
(String path) Deprecated.PackInvalidException
(String path, Throwable cause) Construct a pack invalid error with cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
PackInvalidException
Deprecated.Construct a pack invalid error.- Parameters:
path
- path of the invalid pack file.
-
PackInvalidException
Construct a pack invalid error with cause.- Parameters:
path
- path of the invalid pack file.cause
- cause of the pack file becoming invalid.- Since:
- 4.5.7
-
PackInvalidException
Deprecated.Construct a pack invalid error.- Parameters:
path
- path of the invalid pack file.
-
PackInvalidException
Construct a pack invalid error with cause.- Parameters:
path
- path of the invalid pack file.cause
- cause of the pack file becoming invalid.- Since:
- 4.5.7
-
PackInvalidException(File, Throwable)
.