10 lines
255 B
Java
10 lines
255 B
Java
|
package net.minecraft.nbt;
|
||
|
|
||
|
import net.minecraft.CrashReport;
|
||
|
import net.minecraft.ReportedException;
|
||
|
|
||
|
public class ReportedNbtException extends ReportedException {
|
||
|
public ReportedNbtException(CrashReport p_309750_) {
|
||
|
super(p_309750_);
|
||
|
}
|
||
|
}
|