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

tech.guyi.ipojo.compile.lib.classes.exception.SetMethodNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.0.0.4
Show newest version
package tech.guyi.ipojo.compile.lib.classes.exception;

import javassist.CtClass;
import javassist.CtField;

public class SetMethodNotFoundException extends RuntimeException {

    public SetMethodNotFoundException(CtClass ctClass, CtField field){
        super(String.format("找不到字段[%s][%s]的Set方法",ctClass.getName(),field.getName()));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy