source:
src/test/java/agents/nastyagent/ThrowInInit.java@
161
Last change on this file since 161 was 1, checked in by , 7 years ago | |
---|---|
File size: 262 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | package agents.nastyagent; |
2 | ||
3 | import genius.core.parties.NegotiationInfo; | |
4 | ||
5 | public class ThrowInInit extends NastyAgent { | |
6 | ||
7 | @Override | |
8 | public void init(NegotiationInfo info) { | |
9 | super.init(info); | |
10 | throw new RuntimeException("just throwing in init for fun"); | |
11 | } | |
12 | ||
13 | } |
Note:
See TracBrowser
for help on using the repository browser.