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

com.objectsql.exception.ORMException Maven / Gradle / Ivy

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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy