summaryrefslogtreecommitdiff
path: root/NET/worlds/console/IllegalPilotException.java
blob: c4d8c8be9680514821ffb6ee70ea1b9ed257f85e (plain) (blame)
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() {
   }
}