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

org.jleopard.logging.log.LogException Maven / Gradle / Ivy

Go to download

This is a lightweight complete ORM framework, which encapsulates a large number of commonly used SQL and implements multi-table Association query and paging query.

There is a newer version: 2.2.2
Show newest version
package org.jleopard.logging.log;

/**
 * Copyright (c) 2018, Chen_9g 陈刚 ([email protected]).
 * 

* DateTime 2018/4/8 *

* Find a way for success and not make excuses for failure. */ @SuppressWarnings("serial") public class LogException extends RuntimeException{ public LogException() { super(); } public LogException(String message) { super(message); } public LogException(String message, Throwable cause) { super(message, cause); } public LogException(Throwable cause) { super(cause); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy