if (result == null) { throw new MCNetworkException(); }
if (!result.contains(":")) {
if (result.trim().equals("Bad login")) {
throw new BadLoginException();
} else if (result.trim().equals("User not premium")) {
throw new MinecraftUserNotPremiumException();
} else if (result.trim().equals("Old version")) {
throw new OutdatedMCLauncherException();
} else if (result.trim().equals("Account migrated, use e-mail as username.")) {
throw new AccountMigratedException();
}else {