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

xtendm3-sdk.0.15.0.source-code.FileUtilException Maven / Gradle / Ivy

There is a newer version: 0.18.3
Show newest version
public class FileUtilException extends Exception {
  private static final long serialVersionUID = 1L;
  private final FileUtilError errorType;

  public FileUtilException(FileUtilError errorType, String message) {
    super(message);
    this.errorType = errorType;
  }

  public FileUtilException(FileUtilError errorType, String message, Throwable t) {
    super(message, t);
    this.errorType = errorType;
  }

  public FileUtilError getErrorType() {
    return errorType;
  }

  @Override
  public String getMessage() {
    return errorType + ": " + super.getMessage();
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy