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

net.jirasystems.filestore.FileStoreException Maven / Gradle / Ivy

Go to download

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