public enum WebSiteExceptionTypes extends java.lang.Enum<WebSiteExceptionTypes>
Enum Constant and Description |
---|
ACCOUNT_INFO_WRONG
Some of the provided account information are wrong/missing
|
FINAL_TRANSFER_FAILED
Ein Fehler ist beim endgültigen Absenden der Überweisung aufgetreten
|
HTTP_STATUS_CODE |
KONTO_NOT_FOUND |
LOGIN_ERROR
Fehler während des Logins, anders als Benutzername/Passwort falsch.
|
LOGIN_FAILED
Der Login ist fehlgeschlagen
|
LOGOFF_FAILED
Das Abmelden ist fehlgeschlagen.
|
OPERATION_NOT_SUPPORTED
The web side implementation does not support this operation
|
PAGE_NOT_FOUND |
READ_ACCOUNT_DETAILS_FAILED |
SERVICE_UNAVAILABLE
Der Dienst ist derzeit nicht verfügbar.
|
TRANSFER_FAILED
Ein Fehler ist beim der Überprüfung der Überweisung aufgetreten
|
WEBSITE_NOT_REACHABLE
Webseite ist nicht erreichbar
|
Modifier and Type | Method and Description |
---|---|
static WebSiteExceptionTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WebSiteExceptionTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebSiteExceptionTypes WEBSITE_NOT_REACHABLE
public static final WebSiteExceptionTypes LOGIN_ERROR
public static final WebSiteExceptionTypes LOGIN_FAILED
public static final WebSiteExceptionTypes HTTP_STATUS_CODE
public static final WebSiteExceptionTypes KONTO_NOT_FOUND
public static final WebSiteExceptionTypes READ_ACCOUNT_DETAILS_FAILED
public static final WebSiteExceptionTypes PAGE_NOT_FOUND
public static final WebSiteExceptionTypes SERVICE_UNAVAILABLE
public static final WebSiteExceptionTypes LOGOFF_FAILED
public static final WebSiteExceptionTypes TRANSFER_FAILED
public static final WebSiteExceptionTypes FINAL_TRANSFER_FAILED
public static final WebSiteExceptionTypes OPERATION_NOT_SUPPORTED
public static final WebSiteExceptionTypes ACCOUNT_INFO_WRONG
public static WebSiteExceptionTypes[] values()
for (WebSiteExceptionTypes c : WebSiteExceptionTypes.values()) System.out.println(c);
public static WebSiteExceptionTypes valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null