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

public class InvalidServerURLException extends Exception {
   private static final long serialVersionUID = 5256010949259135827L;

   public InvalidServerURLException() {
   }

   public InvalidServerURLException(String msg) {
      super(msg);
   }
}