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

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

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 - 2025 Weber Informatics LLC | Privacy Policy