Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
QuotaNotInitialized |
|
| 1.0;1 |
1 | package de.tivsource.lib.jcyradm.exception; | |
2 | ||
3 | /** | |
4 | * Die Klasse QuotaNotInitialized ist die Ausnahme die geworfen wird, wenn beim | |
5 | * abfragen des belegten Speicherplatzes oder der aktuellen | |
6 | * Speicherplatzbegrenzung die benötigen Daten noch nicht vom Server empfangen | |
7 | * wurden. | |
8 | * | |
9 | * @author Marc Michele | |
10 | * | |
11 | */ | |
12 | public class QuotaNotInitialized extends Exception { | |
13 | ||
14 | /** | |
15 | * SerialVersionUID der Klasse QuotaNotInitialized. | |
16 | */ | |
17 | private static final long serialVersionUID = 3382327488288130452L; | |
18 | ||
19 | /** | |
20 | * Konstruktor der Klasse QuotaNotInitialized. | |
21 | */ | |
22 | public QuotaNotInitialized() { | |
23 | 0 | super("Quota not initialized"); |
24 | 0 | } |
25 | ||
26 | } // Ende class |