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

com.openthinks.libs.sql.exception.EntityReflectException Maven / Gradle / Ivy

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