package net.minecraft.launcher.authentication.exceptions; public class AuthenticationException extends Exception { public AuthenticationException() { } public AuthenticationException(String message) { super(message); } public AuthenticationException(String message, Throwable cause) { super(message, cause); } public AuthenticationException(Throwable cause) { super(cause); } }