blob: 4b189bfb7cc16dfc9864848c0cc5620a52853945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}
}
|