Package: KeineVerfuegbarkeitException
KeineVerfuegbarkeitException
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| KeineVerfuegbarkeitException(String) | 
  | 
  | 
  | 
  | 
  | 
||||||||||||||||||||
Coverage
1: package util.exceptions;
2: 
3: /**
4:  * Exceptionklasse, welche aussagt das keine Verfuegbarkeit gefunden werden konnte. Tritt bei der Methode getNaechsteVerfuegbarkeit in Kalender/TypMitKalender auf.
5:  */
6: @SuppressWarnings("serial")
7: public class KeineVerfuegbarkeitException extends PPSException {
8: 
9:         /**
10:          * @param message detaillierte Exceptionmessage
11:          */
12:     public KeineVerfuegbarkeitException(final String message) {
13:         super(message);
14:     }
15: }