org.jleopard.exception.NotFoundFieldException 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.exception;
/**
* Copyright (c) 2018, Chen_9g 陈刚 ([email protected]).
*
* DateTime 2018/4/16
*
* Find a way for success and not make excuses for failure.
*/
@SuppressWarnings("serial")
public class NotFoundFieldException extends IllegalArgumentException {
public NotFoundFieldException() {
}
public NotFoundFieldException(String s) {
super(s);
}
public NotFoundFieldException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy