Skip to content

Package: CheckExceptionVisitor

CheckExceptionVisitor

Coverage

1: package de.fhdw.wtf.common.exception.editor;
2:
3: /**
4: * Visitor for {@link CheckException}.
5: *
6: */
7: public interface CheckExceptionVisitor {
8:         
9:         /**
10:          * Handle-Method.
11:          *
12:          * @param v
13:          * {@link MarkableCheckException}
14:          */
15:         void handle(MarkableCheckException v);
16:         
17:         /**
18:          * Handle-Method.
19:          *
20:          * @param v
21:          * {@link GeneralCheckException}
22:          */
23:         void handle(GeneralCheckException v);
24:         
25: }