public interface ProjectorCommand { boolean run(ProjectorApplet p) throws ProjectorCommandException; } class ProjectorCommandException extends Exception { ProjectorCommandException(String message) { super(message); } }