Class SzEnvironmentDestroyedException
Extends InvalidOperationException so the exceptional condition of the SzEnvironment already being destroyed can be differentiated from other InvalidOperationException instances that might be thrown.
public class SzEnvironmentDestroyedException : InvalidOperationException, ISerializable
- Inheritance
-
SzEnvironmentDestroyedException
- Implements
- Inherited Members
Remarks
This exception can be thrown from almost all Senzing SDK functions if the associated SzEnvironment has been destroyed.
NOTE: This class does not extend SzException but rather extends InvalidOperationException.
Constructors
SzEnvironmentDestroyedException()
Default constructor.
public SzEnvironmentDestroyedException()
SzEnvironmentDestroyedException(Exception)
Constructs with the specified Exception cause.
public SzEnvironmentDestroyedException(Exception cause)
Parameters
SzEnvironmentDestroyedException(string)
Constructs with the specified message.
public SzEnvironmentDestroyedException(string message)
Parameters
message
stringThe message describing what occurred.
SzEnvironmentDestroyedException(string, Exception)
Constructs with the specified message and Exception cause.
public SzEnvironmentDestroyedException(string message, Exception cause)