Update CraftBukkit to Minecraft 1.7.8

This commit is contained in:
Travis Watkins
2014-04-10 20:04:38 -05:00
parent 0df7555cec
commit 8f771c7378
50 changed files with 1875 additions and 716 deletions

View File

@@ -0,0 +1,22 @@
package net.minecraft.server;
// CraftBukkit - Imported because it's package private
class FileConversionException extends RuntimeException {
private FileConversionException(String s, Throwable throwable) {
super(s, throwable);
}
private FileConversionException(String s) {
super(s);
}
FileConversionException(String s, PredicateEmptyList predicateemptylist) {
this(s);
}
FileConversionException(String s, Throwable throwable, PredicateEmptyList predicateemptylist) {
this(s, throwable);
}
}