1
2
3
4
5
6
7
8
9
10
11 package org.eclipse.jgit.errors;
12
13 import java.io.IOException;
14 import java.text.MessageFormat;
15
16 import org.eclipse.jgit.internal.JGitText;
17
18
19
20
21
22
23 public class UnsupportedPackIndexVersionException extends IOException {
24 private static final long serialVersionUID = 1L;
25
26
27
28
29
30
31
32 public UnsupportedPackIndexVersionException(int version) {
33 super(MessageFormat.format(JGitText.get().unsupportedPackIndexVersion,
34 Integer.valueOf(version)));
35 }
36 }