DownloadRemovalVetoExceptionpublic class DownloadRemovalVetoException extends Exception This exception is thrown to prevent the removal of a download |
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 boolean | isSilent()
return silent;
|
|