com.objectsql.exception.ORMException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of object-sql Show documentation
Show all versions of object-sql Show documentation
Lightweight Object SQL Relational Mapping (OSRM)
The newest version!
package com.objectsql.exception;
/**
* 项目名称: object-sql
* 描述: Table
* 创建时间:2020/3/13 10:02
* 公司信息:objectsql
*
* @author huangyonghua, [email protected]
*/
public class ORMException extends RuntimeException{
public ORMException(String msg){
super(msg);
}
public ORMException(Exception e){
super(e);
}
public ORMException(String msg, Exception e){
super(msg, e);
}
}