Преглед изворни кода

Merge "Fix compilation with Java 1.5"

tags/v1.1.0.201109011030-rc2
Matthias Sohn пре 13 година
родитељ
комит
5223cb6e5a

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPackInternalServerErrorException.java Прегледај датотеку



import java.io.IOException; import java.io.IOException;


/** UploadPack has already reported an error to the client. */
/** UploadPack has already reported an error to the client.*/
public class UploadPackInternalServerErrorException extends IOException { public class UploadPackInternalServerErrorException extends IOException {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;


* root cause. * root cause.
*/ */
public UploadPackInternalServerErrorException(Throwable why) { public UploadPackInternalServerErrorException(Throwable why) {
super(why);
initCause(why);
} }
} }

Loading…
Откажи
Сачувај