minecraft-source/src/net/minecraft/ReportedException.java

24 lines
485 B
Java

package net.minecraft;
public class ReportedException extends RuntimeException {
private final CrashReport report;
public ReportedException(final CrashReport h) {
this.report = h;
}
public CrashReport getReport() {
return this.report;
}
@Override
public Throwable getCause() {
return this.report.getException();
}
@Override
public String getMessage() {
return this.report.getTitle();
}
}