minecraft-src/com/mojang/realmsclient/exception/RealmsServiceException.java
2025-07-04 01:41:11 +03:00

18 lines
462 B
Java

package com.mojang.realmsclient.exception;
import com.mojang.realmsclient.client.RealmsError;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
@Environment(EnvType.CLIENT)
public class RealmsServiceException extends Exception {
public final RealmsError realmsError;
public RealmsServiceException(RealmsError realmsError) {
this.realmsError = realmsError;
}
public String getMessage() {
return this.realmsError.logMessage();
}
}