ExternalSeedExceptionpublic class ExternalSeedException extends Exception
Fields Summary |
---|
private boolean | permanent |
Constructors Summary |
---|
public ExternalSeedException(String str)
super( str );
| public ExternalSeedException(String str, Throwable e)
super( str, e );
|
Methods Summary |
---|
public boolean | isPermanentFailure()
return( permanent );
| public void | setPermanentFailure(boolean b)
permanent = b;
|
|