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

12 lines
291 B
Java
Raw Normal View History

2017-02-05 23:03:17 +01:00
package net.ME1312.SubServers.Host.Library.Exception;
/**
* Illegal String Value Exception
*/
2017-02-05 23:03:17 +01:00
public class IllegalStringValueException extends IllegalStateException {
public IllegalStringValueException() {}
public IllegalStringValueException(String s) {
super(s);
}
}