eagler-1-12-4 / src /game /java /net /minecraft /ReportedException.java
soiz1's picture
Upload folder using huggingface_hub
d46f4a3 verified
package net.minecraft;
public class ReportedException extends RuntimeException {
private final CrashReport report;
public ReportedException(CrashReport p_134760_) {
this.report = p_134760_;
}
public CrashReport getReport() {
return this.report;
}
@Override
public Throwable getCause() {
return this.report.getException();
}
@Override
public String getMessage() {
return this.report.getTitle();
}
}