Table of Contents

Class SzEnvironmentDestroyedException

Namespace
Senzing.Sdk
Assembly
Senzing.Sdk.dll

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

cause Exception

The Exception cause

SzEnvironmentDestroyedException(string)

Constructs with the specified message.

public SzEnvironmentDestroyedException(string message)

Parameters

message string

The message describing what occurred.

SzEnvironmentDestroyedException(string, Exception)

Constructs with the specified message and Exception cause.

public SzEnvironmentDestroyedException(string message, Exception cause)

Parameters

message string

The message describing what occurred.

cause Exception

The Exception cause