Class SzNotInitializedException
Extends SzUnrecoverableException to define an exceptional condition triggered by Senzing not being initialized.
public class SzNotInitializedException : SzUnrecoverableException, ISerializable
- Inheritance
-
SzNotInitializedException
- Implements
- Inherited Members
Constructors
SzNotInitializedException()
Default constructor.
public SzNotInitializedException()
SzNotInitializedException(Exception)
Constructs with the {@link Throwable} that is the underlying cause for the exception.
public SzNotInitializedException(Exception cause)
Parameters
causeExceptionThe underlying cause for the exception.
SzNotInitializedException(long?, string)
Constructs with a message explaining the reason for the exception.
public SzNotInitializedException(long? errorCode, string message)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
SzNotInitializedException(long?, string, Exception)
Constructs with the Senzing error code, the message explaining the reason
for the exception and the Exception that is the underlying cause
for the exception.
public SzNotInitializedException(long? errorCode, string message, Exception cause)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
causeExceptionThe underlying cause for the exception.
SzNotInitializedException(string)
Constructs with a message explaining the reason for the exception.
public SzNotInitializedException(string message)
Parameters
messagestringThe message explaining the reason for the exception.
SzNotInitializedException(string, Exception)
Constructs with a message explaining the reason for the exception and
the Exception that is the underlying cause for the exception.
public SzNotInitializedException(string message, Exception cause)