Skip to content

Method: NoMatchingMethodException(String)

1: package de.fhdw.wtf.generator.transformer.exception;
2:
3: import de.fhdw.wtf.common.exception.walker.TaskException;
4:
5: public class NoMatchingMethodException extends TaskException {
6:         
7:         private static final long serialVersionUID = 1L;
8:         private static final String NO_MATCHING_METHOD = "The function in clipper cannot be decoded: ";
9:         
10:         public NoMatchingMethodException(final String functionName) {
11:                 super(NO_MATCHING_METHOD + functionName);
12:         }
13:         
14: }