org.jfaster.mango.jdbc.exception.InvalidDataAccessResourceUsageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mango Show documentation
Show all versions of mango Show documentation
mango is a dao framework.
The newest version!
package org.jfaster.mango.jdbc.exception;
/**
* 访问数据错误异常继承此类
*
* @author ash
*/
public class InvalidDataAccessResourceUsageException extends NonTransientDataAccessException {
public InvalidDataAccessResourceUsageException(String msg) {
super(msg);
}
public InvalidDataAccessResourceUsageException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy