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

cn.dreampie.orm.exception.DBException Maven / Gradle / Ivy

There is a newer version: 1.3.0.RELEASE
Show newest version
package cn.dreampie.orm.exception;

/**
 * DBException
 */
public class DBException extends RuntimeException {

  public DBException() {
  }

  public DBException(String message) {
    super(message);
  }

  public DBException(Throwable cause) {
    super(cause);
  }

  public DBException(String message, Throwable cause) {
    super(message, cause);
  }
}














© 2015 - 2025 Weber Informatics LLC | Privacy Policy