Class SzConfigurationException
Defines an exceptional condition when a failure has occurred pertaining to the Senzing configuration.
public class SzConfigurationException : SzException, ISerializable
- Inheritance
-
SzConfigurationException
- Implements
- Inherited Members
Constructors
SzConfigurationException()
Default constructor.
public SzConfigurationException()
SzConfigurationException(Exception)
Constructs with the {@link Throwable} that is the underlying cause for the exception.
public SzConfigurationException(Exception cause)
Parameters
causeExceptionThe underlying cause for the exception.
SzConfigurationException(long?, string)
Constructs with a message explaining the reason for the exception.
public SzConfigurationException(long? errorCode, string message)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
SzConfigurationException(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 SzConfigurationException(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.
SzConfigurationException(string)
Constructs with a message explaining the reason for the exception.
public SzConfigurationException(string message)
Parameters
messagestringThe message explaining the reason for the exception.
SzConfigurationException(string, Exception)
Constructs with a message explaining the reason for the exception and
the Exception that is the underlying cause for the exception.
public SzConfigurationException(string message, Exception cause)