summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/LoginError.java
blob: 9b61f4a543c12a87a71affb4a00a2405b6630b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package jrummikub.view;

/**
 * Enum summarizing the different kinds of login errors
 */
public enum LoginError {
	/** Error cannot be dissolved to a specific type */
	UNKNOWN_ERROR,
	/** No answer from network */
	TIMEOUT,
	/** Connection denied by server */
	CONNECTION_REFUSED,
	/** Password or username incorrect */
	AUTHENTICATION_FAILED,
	/** Server not found */
	UNKNOWN_HOST,
	/** Channel not found */
	UNKNOWN_CHANNEL
}