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

se.l4.silo.StorageException Maven / Gradle / Ivy

The newest version!
package se.l4.silo;

/**
 * Exception thrown when a storage operation can not be completed.
 *
 * @author Andreas Holstenson
 *
 */
public class StorageException
	extends RuntimeException
{
	private static final long serialVersionUID = 7258084593814673954L;

	public StorageException()
	{
		super();
	}

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

	public StorageException(String message)
	{
		super(message);
	}

	public StorageException(Throwable cause)
	{
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy