SubServers-2/SubServers.Host/src/net/ME1312/SubServers/Host/Library/Exception/InvalidServerException.java
ME1312 7821c1f88e SubServers.Host Alpha 2
This update to SubServers.Host adds the core functions to the program.
It can now be used to host and create servers on other machines. API
while available is quite limited right now. This is also a very early
build, so it's probably not so stable just yet fyi.
2017-04-01 01:37:48 -04:00

12 lines
270 B
Java

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