Skip to content

Method: SumIsAnythingException()

1: package de.fhdw.wtf.common.exception.parser;
2:
3: import de.fhdw.wtf.common.constants.parser.ExceptionConstants;
4:
5: /**
6: * This Message will be thrown if the Method standardizeElements in {@link de.fhdw.wtf.common.ast.type.SumType} find
7: * Anything as Element in the Sum.
8: */
9: public class SumIsAnythingException extends Exception {
10:         
11:         /**
12:          * generated.
13:          */
14:         private static final long serialVersionUID = -4781383680373113316L;
15:         
16:         /**
17:          * Constructor of {@link SumIsAnythingException}.
18:          */
19:         public SumIsAnythingException() {
20:                 super(ExceptionConstants.SUM_IS_ANYTHING_MESSAGE);
21:         }
22:         
23: }