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:
java.io.Serializable
public class PackInvalidException extends java.io.IOException
Thrown when a PackFile previously failed and is known to be unusable- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description PackInvalidException(java.io.File path)
Deprecated.PackInvalidException(java.io.File path, java.lang.Throwable cause)
Construct a pack invalid error with cause.PackInvalidException(java.lang.String path)
Deprecated.PackInvalidException(java.lang.String path, java.lang.Throwable cause)
Construct a pack invalid error with cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PackInvalidException
@Deprecated public PackInvalidException(java.io.File path)
Deprecated.Construct a pack invalid error.- Parameters:
path
- path of the invalid pack file.
-
PackInvalidException
public PackInvalidException(java.io.File path, java.lang.Throwable cause)
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 public PackInvalidException(java.lang.String path)
Deprecated.Construct a pack invalid error.- Parameters:
path
- path of the invalid pack file.
-
PackInvalidException
public PackInvalidException(java.lang.String path, java.lang.Throwable cause)
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
-
-