source: src/test/java/agents/nastyagent/ThrowInReceiveMessage.java

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

Initial import : Genius 9.0.0

File size: 266 bytes
Line 
1package agents.nastyagent;
2
3import genius.core.AgentID;
4import genius.core.actions.Action;
5
6public class ThrowInReceiveMessage extends NastyAgent {
7
8 @Override
9 public void receiveMessage(AgentID sender, Action arguments) {
10 throw new RuntimeException("bla");
11 }
12}
Note: See TracBrowser for help on using the repository browser.