summaryrefslogtreecommitdiff
path: root/NET/worlds/console/NoWebControlException.java
blob: ca4a7ef7f921adc3b6078c282eea7b7e2d1e1dda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package NET.worlds.console;

public class NoWebControlException extends Exception {
   private static final long serialVersionUID = 8391822026004106330L;

   NoWebControlException() {
   }

   NoWebControlException(String s) {
      super(s);
   }
}