org.jleopard.logging.log.LogException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jleopard Show documentation
Show all versions of jleopard Show documentation
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.
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