FileDocCategorySizeDatePackage
DownloadRemovalVetoException.javaAPI DocAzureus 3.0.3.41335Thu Aug 17 17:12:32 BST 2006org.gudy.azureus2.plugins.download

DownloadRemovalVetoException

public class DownloadRemovalVetoException extends Exception
This exception is thrown to prevent the removal of a download
author
parg
since
2.0.7.0

Fields Summary
private boolean
silent
Constructors Summary
public DownloadRemovalVetoException(String str, boolean silent)

		super(str);
		this.silent = silent;
	
public DownloadRemovalVetoException(String str)

		this(str,false);
	
Methods Summary
public booleanisSilent()

		return silent;