SubServers-2/SubServers.Host/src/net/ME1312/SubServers/Host/Library/Exception/IllegalStringValueException...

12 lines
291 B
Java

package net.ME1312.SubServers.Host.Library.Exception;
/**
* Illegal String Value Exception
*/
public class IllegalStringValueException extends IllegalStateException {
public IllegalStringValueException() {}
public IllegalStringValueException(String s) {
super(s);
}
}