Skip to content

Method: TaskException(Exception)

1: package de.fhdw.wtf.common.exception.walker;
2:
3: public class TaskException extends Exception {
4:         
5:         private static final long serialVersionUID = 1995653220650212890L;
6:         
7:         public TaskException(final String message) {
8:                 super(message);
9:         }
10:         
11:         public TaskException(final Exception e) {
12:                 super(e);
13:         }
14: }