package com.nicewuerfel.blockown;
/**
* Thrown if no world could be found on the server for a given world name.
*
* @author Pheasn
*/
public class InvalidWorldNameException extends Exception {
private static final long serialVersionUID = -9113092566046073634L;
public InvalidWorldNameException() {
super();
}
public InvalidWorldNameException(String string) {
super(string);
}
}