io.proximax.exceptions.UploadPathNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-chain-xipfs-sdk Show documentation
Show all versions of java-chain-xipfs-sdk Show documentation
Official ProximaX P2P Storage SDK Library in Java.
The newest version!
package io.proximax.exceptions;
/**
* The exception when uploading path using a storage connection
*/
public class UploadPathNotSupportedException extends RuntimeException {
/**
* Create instance of this exception
*
* @param message the exception message
*/
public UploadPathNotSupportedException(String message) {
super(message);
}
/**
* Create instance of this exception
*
* @param message the exception message
* @param cause the cause of this exception
*/
public UploadPathNotSupportedException(String message, Throwable cause) {
super(message, cause);
}
}