Skip to content

Method: CreateNodeException(String)

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