![JAR search and dependency download from the Maven repository](/logo.png)
cn.dreampie.common.entity.exception.EntityException Maven / Gradle / Ivy
package cn.dreampie.common.entity.exception;
/**
* ModelException
*/
public class EntityException extends RuntimeException {
public EntityException() {
}
public EntityException(String message) {
super(message);
}
public EntityException(Throwable cause) {
super(cause);
}
public EntityException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy