Spaces:
Build error
Build error
File size: 516 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
package com.mojang.realmsclient.exception;
import com.mojang.realmsclient.client.RealmsError;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class RealmsServiceException extends Exception {
public final RealmsError realmsError;
public RealmsServiceException(RealmsError p_299387_) {
this.realmsError = p_299387_;
}
@Override
public String getMessage() {
return this.realmsError.logMessage();
}
} |