online.sanen.unabo.api.exception.SupportsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unabo Show documentation
Show all versions of unabo Show documentation
Unabo, the Java™ progressive ORM framework
package online.sanen.unabo.api.exception;
import online.sanen.unabo.api.structure.enums.ProductType;
/**
*
* @author LazyToShow
* Date: 2018/06/12
* Time: 09:17
*/
public class SupportsException extends RuntimeException{
private static final long serialVersionUID = 9071750235589645848L;
public SupportsException(ProductType productType) {
super("Database types are not currently supported:"+productType.toString());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy