Skip to content

Method: GeneralCheckException(Exception)

1: package de.fhdw.wtf.common.exception.editor;
2:
3: public class GeneralCheckException extends CheckException {
4:         
5:         /**
6:          * generated.
7:          */
8:         private static final long serialVersionUID = -2167050766620631474L;
9:         
10:         /**
11:          * Constructor of {@link GeneralCheckException}.
12:          *
13:          * @param inner
14:          * inner Exception
15:          */
16:         public GeneralCheckException(final Exception inner) {
17:                 super(inner);
18:         }
19:         
20:         @Override
21:         public void accept(final CheckExceptionVisitor v) {
22:                 v.handle(this);
23:         }
24:         
25: }