SubServers-2/SubServers.Bungee/src/net/ME1312/SubServers/Bungee/Library/Exception/InvalidHostException.java
2017-01-07 14:06:54 -05:00

12 lines
264 B
Java

package net.ME1312.SubServers.Bungee.Library.Exception;
/**
* Invalid Host Exception
*/
public class InvalidHostException extends IllegalStateException {
public InvalidHostException() {}
public InvalidHostException(String s) {
super(s);
}
}