Add account manager and the account page is now fully functional.
Fix "Missing javaVersion" error when launching legacy Minecraft. Add settings page. (But is not fully implemented yet)
This commit is contained in:
@@ -86,4 +86,28 @@ class ProfileLoadException(LauncherException):
|
||||
user_message = "Unable to load profile. Profile may corrupted"
|
||||
|
||||
class ProfileKeyNotFoundException(LauncherException):
|
||||
user_message = "Specified profile key not found. Profile may corrupted."
|
||||
user_message = "Specified profile key not found. Profile may corrupted."
|
||||
|
||||
class AccountException(LauncherException):
|
||||
user_message = "An error occurred while processing account data."
|
||||
|
||||
class AccountSaveException(AccountException):
|
||||
user_message = "Unable to save account data. Try again later."
|
||||
|
||||
class AccountLoadException(AccountException):
|
||||
user_message = "Unable to load account data. The account file may be corrupted."
|
||||
|
||||
class AccountKeyNotFoundException(AccountException):
|
||||
user_message = "Specified account was not found."
|
||||
|
||||
class AuthenticationException(LauncherException):
|
||||
user_message = "Authentication failed."
|
||||
|
||||
class AuthenticationConnectException(LauncherException):
|
||||
user_message = "An error occurred while connecting to authentication server."
|
||||
|
||||
class AuthenticationSessionException(LauncherException):
|
||||
user_message = "Authentication failed. Session may expire."
|
||||
|
||||
class ThirdPartyAPIException(LauncherException):
|
||||
user_message = "An error occurred while fetching third party API."
|
||||
Reference in New Issue
Block a user