org.carlspring.cloud.storage.s3fs.S3FileSystemConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3fs-nio Show documentation
Show all versions of s3fs-nio Show documentation
A Java NIO FileSystem Provider for Amazon AWS S3
The newest version!
package org.carlspring.cloud.storage.s3fs;
public class S3FileSystemConfigurationException
extends RuntimeException
{
private static final long serialVersionUID = 1L;
public S3FileSystemConfigurationException(String message, Throwable cause)
{
super(message, cause);
}
}