| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| NoQuota |
|
| 1.0;1 |
| 1 | package de.tivsource.lib.jcyradm.exception; | |
| 2 | ||
| 3 | /** | |
| 4 | * Die Klasse NoQuota ist die Ausnahme die geworfen wird, wenn für die | |
| 5 | * angegebene Mailbox keine Quota angelegt wurde. | |
| 6 | * | |
| 7 | * @author Marc Michele | |
| 8 | * | |
| 9 | */ | |
| 10 | public class NoQuota extends Exception { | |
| 11 | ||
| 12 | /** | |
| 13 | * SerialVersionUID der Klasse NoQuota. | |
| 14 | */ | |
| 15 | private static final long serialVersionUID = 1781362930378208586L; | |
| 16 | ||
| 17 | /** | |
| 18 | * Konstruktor der Klasse NoQuota. | |
| 19 | */ | |
| 20 | public NoQuota() { | |
| 21 | 0 | super("No Mailbox Quota set."); |
| 22 | 0 | } |
| 23 | ||
| 24 | } // Ende class |