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

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

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

public class NotTableFieldException extends RuntimeException {

    public NotTableFieldException(Class clazz, String fieldName) {
        super("the field: " + fieldName + " not found in " + clazz.getName());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy