Skip to content

Package: CreateNodeException

CreateNodeException

nameinstructionbranchcomplexitylinemethod
CreateNodeException(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%

Coverage

1: package networkconfigurator.actions;
2:
3: /**
4: * Exception if the node could not be created.
5: *
6: * @author Erik und Jannik Hfw416
7: *
8: */
9: public class CreateNodeException extends Exception {
10:         /**
11:          * the constructor.
12:          *
13:          * @param string
14:          * the errormessage.
15:          */
16:         public CreateNodeException(final String string) {
17:                 super(string);
18:         }
19:
20: }