Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / ReportedException.java
Simon Lindgren on 26 Mar 2020 412 bytes first commit
package net.minecraft.server;

public class ReportedException extends RuntimeException {

    private final CrashReport a;

    public ReportedException(CrashReport crashreport) {
        this.a = crashreport;
    }

    public CrashReport a() {
        return this.a;
    }

    public Throwable getCause() {
        return this.a.b();
    }

    public String getMessage() {
        return this.a.a();
    }
}