CraftBukkit/src/main/java/net/minecraft/server/FileConversionException.java
2014-04-11 22:28:35 -05:00

23 lines
562 B
Java

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);
}
}