Skip to content

Package: BeilagenAnzahlOutOfBoundsException

BeilagenAnzahlOutOfBoundsException

nameinstructionbranchcomplexitylinemethod
BeilagenAnzahlOutOfBoundsException()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
BeilagenAnzahlOutOfBoundsException(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
BeilagenAnzahlOutOfBoundsException(String, Throwable)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
BeilagenAnzahlOutOfBoundsException(Throwable)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: package util.exceptions;
2:
3: /**
4: * Wird geworfen, wenn die obere Grenze der Beilagenartenanzahl überschritten wird.
5: */
6: public class BeilagenAnzahlOutOfBoundsException extends RuntimeException {
7:         /**
8:          * Constructs a new runtime exception with {@code null} as its
9:          * detail message. The cause is not initialized, and may subsequently be
10:          * initialized by a call to {@link #initCause}.
11:          */
12:         public BeilagenAnzahlOutOfBoundsException() {
13:         }
14:
15:         /**
16:          * Constructs a new runtime exception with the specified detail message.
17:          * The cause is not initialized, and may subsequently be initialized by a
18:          * call to {@link #initCause}.
19:          *
20:          * @param message
21:          *                 the detail message. The detail message is saved for
22:          *                 later retrieval by the {@link #getMessage()} method.
23:          */
24:         public BeilagenAnzahlOutOfBoundsException(final String message) {
25:                 super(message);
26:         }
27:
28:         /**
29:          * Constructs a new runtime exception with the specified detail message and
30:          * cause. <p>Note that the detail message associated with
31:          * {@code cause} is <i>not</i> automatically incorporated in
32:          * this runtime exception's detail message.
33:          *
34:          * @param message
35:          *                 the detail message (which is saved for later retrieval
36:          *                 by the {@link #getMessage()} method).
37:          * @param cause
38:          *                 the cause (which is saved for later retrieval by the
39:          *                 {@link #getCause()} method). (A <tt>null</tt> value is
40:          *                 permitted, and indicates that the cause is nonexistent or
41:          *                 unknown.)
42:          *
43:          * @since 1.4
44:          */
45:         public BeilagenAnzahlOutOfBoundsException(final String message, final Throwable cause) {
46:                 super(message, cause);
47:         }
48:
49:         /**
50:          * Constructs a new runtime exception with the specified cause and a
51:          * detail message of <tt>(cause==null ? null : cause.toString())</tt>
52:          * (which typically contains the class and detail message of
53:          * <tt>cause</tt>). This constructor is useful for runtime exceptions
54:          * that are little more than wrappers for other throwables.
55:          *
56:          * @param cause
57:          *                 the cause (which is saved for later retrieval by the
58:          *                 {@link #getCause()} method). (A <tt>null</tt> value is
59:          *                 permitted, and indicates that the cause is nonexistent or
60:          *                 unknown.)
61:          *
62:          * @since 1.4
63:          */
64:         public BeilagenAnzahlOutOfBoundsException(final Throwable cause) {
65:                 super(cause);
66:         }
67: }