source: src/test/java/agents/nastyagent/ThrowInInit.java@ 53

Last change on this file since 53 was 1, checked in by Wouter Pasman, 6 years ago

Initial import : Genius 9.0.0

File size: 262 bytes
Line 
1package agents.nastyagent;
2
3import genius.core.parties.NegotiationInfo;
4
5public 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.