CommonCore/testsrc/de/steamwar/command/SimpleCommand.java
2022-04-22 10:16:25 +02:00

17 Zeilen
363 B
Java

package de.steamwar.command;
import de.steamwar.command.dto.ExecutionIdentifier;
import de.steamwar.command.dto.TestSWCommand;
public class SimpleCommand extends TestSWCommand {
public SimpleCommand() {
super("simple");
}
@Register
public void simple(String s) {
throw new ExecutionIdentifier("RunSimple with noArgs");
}
}