source:
src/test/java/agents/nastyagent/ThrowInInit.java
Last change on this file was 1, checked in by , 6 years ago | |
---|---|
File size: 262 bytes |
Line | |
---|---|
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.