Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AuthenticationFailure |
|
| 1.0;1 |
1 | package de.tivsource.lib.jcyradm.exception; | |
2 | ||
3 | /** | |
4 | * Die Klasse AuthenticationFailure ist die Ausnahme die geworfen wird wenn der | |
5 | * Benutzername oder das Passwort nicht gültig sind. | |
6 | * | |
7 | * @author Marc Michele | |
8 | * | |
9 | */ | |
10 | public class AuthenticationFailure extends Exception { | |
11 | ||
12 | /** | |
13 | * SerialVersionUID der Klasse AuthenticationFailure. | |
14 | */ | |
15 | private static final long serialVersionUID = 5655198435093474377L; | |
16 | ||
17 | /** | |
18 | * Konstruktor der Klasse AuthenticationFailure. | |
19 | */ | |
20 | public AuthenticationFailure() { | |
21 | 0 | super("Wrong User or Password."); |
22 | 0 | } |
23 | ||
24 | } // Ende class |