minecraft-src/net/minecraft/nbt/ReportedNbtException.java
2025-07-04 01:41:11 +03:00

10 lines
248 B
Java

package net.minecraft.nbt;
import net.minecraft.CrashReport;
import net.minecraft.ReportedException;
public class ReportedNbtException extends ReportedException {
public ReportedNbtException(CrashReport crashReport) {
super(crashReport);
}
}