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

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