net.jirasystems.filestore.FileStoreException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of file-store Show documentation
Show all versions of file-store Show documentation
Enables the storage and retrieval of files on a file-system by arbitrary ID
The newest version!
/**
*
*/
package net.jirasystems.filestore;
/**
* @author david
*
*/
public class FileStoreException extends Exception {
/**
* Generated by Eclipse.
*/
private static final long serialVersionUID = -5608951761527652849L;
/**
* @param message
* Exception message.
*/
public FileStoreException(String message) {
super(message);
}
/**
* @param message
* Exception message.
* @param cause
* Exception cause
*/
public FileStoreException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy