1 package de.fhdw.wtf.context.exception;
2
3 /**
4 * Thrown if a DummyCollection is used inadvertently.
5 */
6 public class DummyCollectionUsed extends FrameworkException {
7
8 /**
9 * Creates a DummyCollectionUsed exception.
10 */
11 public DummyCollectionUsed() {
12 super(
13 "This exception occured because you invoked a return method on a dummy collection you should not see this");
14 }
15
16 /**
17 * The exception's serial ID.
18 */
19 private static final long serialVersionUID = 1L;
20
21 }