![JAR search and dependency download from the Maven repository](/logo.png)
com.alibaba.tamper.core.BeanMappingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tamper Show documentation
Show all versions of tamper Show documentation
github tamper project as open source.
The newest version!
package com.alibaba.tamper.core;
import org.apache.commons.lang.exception.NestableRuntimeException;
/**
* @author jianghang 2011-5-25 上午11:23:59
*/
public class BeanMappingException extends NestableRuntimeException {
private static final long serialVersionUID = -4176128184885659405L;
public BeanMappingException(){
super();
}
public BeanMappingException(String message, Throwable cause){
super(message, cause);
}
public BeanMappingException(String message){
super(message);
}
public BeanMappingException(Throwable cause){
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy