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

cn.dreampie.common.util.stream.FileException Maven / Gradle / Ivy

There is a newer version: 1.3.0.RELEASE
Show newest version
package cn.dreampie.common.util.stream;

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

  public FileException() {
  }

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

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

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














© 2015 - 2024 Weber Informatics LLC | Privacy Policy