![JAR search and dependency download from the Maven repository](/logo.png)
com.openthinks.libs.sql.exception.EntityReflectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlibs.sql Show documentation
Show all versions of openlibs.sql Show documentation
The lib of java database ORM simple implementation.
The newest version!
package com.openthinks.libs.sql.exception;
/**
* 实体类反射异常
*
* Date: 2010/11/16
* @author dmj
*/
public class EntityReflectException extends RuntimeException {
private static final long serialVersionUID = -302784764171463472L;
public EntityReflectException() {
}
public EntityReflectException(String message) {
super("实体类反射异常:" + message);
}
public EntityReflectException(Throwable cause) {
super(cause);
}
public EntityReflectException(String message, Throwable cause) {
super("实体类反射异常:" + message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy