1 2 3 4 5 6 7 8 9 10 11 12
package NET.worlds.console; public class IllegalPilotException extends Exception { private static final long serialVersionUID = 421670050791293454L; IllegalPilotException(String s) { super(s); } IllegalPilotException() { } }