Skip to content

Package: KeineVerfuegbarkeitException

KeineVerfuegbarkeitException

nameinstructionbranchcomplexitylinemethod
KeineVerfuegbarkeitException(String)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

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: }