1 package nl.tudelft.goal.emohawk.messages; 2 3 import cz.cuni.amis.utils.exception.PogamutException; 4 5 public interface Action { 6 7 void execute() throws PogamutException; 8 9 }