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

site.sorghum.anno._ddl.DdlException Maven / Gradle / Ivy

The newest version!
package site.sorghum.anno._ddl;

/**
 * @author songyinyin
 * @since 2023/7/2 16:41
 */
public class DdlException extends RuntimeException {
  public DdlException(String message) {
    super(message);
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy