13 lines
275 B
Java
13 lines
275 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.world.level.chunk;
|
|
|
|
public class MissingPaletteEntryException
|
|
extends RuntimeException {
|
|
public MissingPaletteEntryException(int index) {
|
|
super("Missing Palette entry for index " + index + ".");
|
|
}
|
|
}
|
|
|