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

com.sap.hana.datalake.files.utils.filewatcher.FileWatcherException Maven / Gradle / Ivy

Go to download

An implementation of org.apache.hadoop.fs.FileSystem targeting SAP HANA Data Lake Files.

There is a newer version: 3.0.27
Show newest version
// © 2023 SAP SE or an SAP affiliate company. All rights reserved.
package com.sap.hana.datalake.files.utils.filewatcher;

import com.sap.hana.datalake.files.classification.InterfaceAudience;

@InterfaceAudience.Private
public class FileWatcherException extends Exception {

  private static final long serialVersionUID = 8373732959594734959L;

  public FileWatcherException(final String message) {
    super(message);
  }

  public FileWatcherException(final Throwable cause) {
    super(cause);
  }

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

}

// © 2023 SAP SE or an SAP affiliate company. All rights reserved.




© 2015 - 2025 Weber Informatics LLC | Privacy Policy