Essentials/Essentials/src/main/java/com/earth2me/essentials/api/InvalidNameException.java

18 lines
533 B
Java
Raw Normal View History

package com.earth2me.essentials.api;
2020-10-04 18:03:52 +02:00
/**
* @deprecated This exception relates to the abandoned 3.x storage refactor and is not implemented.
*/
@Deprecated
2015-04-15 06:06:16 +02:00
public class InvalidNameException extends Exception {
/**
* NOTE: This is not implemented yet, just here for future 3.x api support Allow serialization of the
* InvalidNameException exception
*/
private static final long serialVersionUID = 1485321420293663139L;
2020-10-03 19:46:05 +02:00
public InvalidNameException(final Throwable thrwbl) {
2015-04-15 06:06:16 +02:00
super(thrwbl);
}
}