Skip to content

Package: SystemException

SystemException

nameinstructionbranchcomplexitylinemethod
SystemException(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 de.fhdw.wtf.facade;
2:
3: /**
4: * A SystemException is a RuntimeException that is thrown when an uncorrectable error occurs while generating.
5: */
6: public class SystemException extends RuntimeException {
7:         
8:         /**
9:          *
10:          */
11:         private static final long serialVersionUID = 1L;
12:         
13:         /**
14:          * Creates a new SystemException, that is a RuntimeException and is thrown when an uncorrectable error occurs while
15:          * generating.
16:          *
17:          * @param cause
18:          * The Throwable that is the reason for throwing this SystemException
19:          */
20:         public SystemException(final Throwable cause) {
21:                 super(cause);
22:         }
23:         
24: }