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

com.ursful.framework.orm.exception.ORMException Maven / Gradle / Ivy

The newest version!
package com.ursful.framework.orm.exception;

/**
 * 

项目名称: object-sql

*

描述: Table

*

创建时间:2020/3/13 10:02

*

公司信息:厦门海迈科技股份有限公司>研发中心>框架组

* * @author huangyonghua, [email protected] */ public class ORMException extends Exception{ private ORMError error; public ORMError getError() { return error; } public ORMException(ORMError error, String... args){ super("ORM ERROR : " + String.format(error.getName(), args)); this.error = error; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy