minecraft_25w45a_unobfuscated/net/minecraft/server/RunningOnDifferentThreadException.java
2025-11-24 22:52:51 +03:00

21 lines
542 B
Java

/*
* Decompiled with CFR 0.152.
*/
package net.minecraft.server;
public final class RunningOnDifferentThreadException
extends RuntimeException {
public static final RunningOnDifferentThreadException RUNNING_ON_DIFFERENT_THREAD = new RunningOnDifferentThreadException();
private RunningOnDifferentThreadException() {
this.setStackTrace(new StackTraceElement[0]);
}
@Override
public synchronized Throwable fillInStackTrace() {
this.setStackTrace(new StackTraceElement[0]);
return this;
}
}