source:
src/test/java/agents/nastyagent/ThrowInChoose.java@
1
Last change on this file since 1 was 1, checked in by , 6 years ago | |
---|---|
File size: 267 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | package agents.nastyagent; |
2 | ||
3 | import java.util.List; | |
4 | ||
5 | import genius.core.actions.Action; | |
6 | ||
7 | public class ThrowInChoose extends NastyAgent { | |
8 | ||
9 | @Override | |
10 | public Action chooseAction(List<Class<? extends Action>> possibleActions) { | |
11 | throw new RuntimeException("bla"); | |
12 | } | |
13 | } |
Note:
See TracBrowser
for help on using the repository browser.