All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.mybatis.mp.core.NotTableClassException Maven / Gradle / Ivy

There is a newer version: 1.7.6-RC2
Show newest version
package cn.mybatis.mp.core;

public class NotTableClassException extends RuntimeException {

    public NotTableClassException(Class clazz) {
        super(clazz.getName() + " has no @Table annotation");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy