Spaces:
Build error
Build error
package com.mojang.realmsclient.exception; | |
import com.mojang.realmsclient.client.RealmsError; | |
import net.minecraftforge.api.distmarker.Dist; | |
import net.minecraftforge.api.distmarker.OnlyIn; | |
public class RealmsServiceException extends Exception { | |
public final RealmsError realmsError; | |
public RealmsServiceException(RealmsError p_299387_) { | |
this.realmsError = p_299387_; | |
} | |
public String getMessage() { | |
return this.realmsError.logMessage(); | |
} | |
} |