Class SzUnknownDataSourceException
Extends SzBadInputException to define an exceptional condition where the provided bad input to a Senzing operation is an identifier that could not be used to successfully locate required data for that operation.
public class SzUnknownDataSourceException : SzBadInputException, ISerializable
- Inheritance
-
SzUnknownDataSourceException
- Implements
- Inherited Members
Constructors
SzUnknownDataSourceException()
Default constructor.
public SzUnknownDataSourceException()
SzUnknownDataSourceException(Exception)
Constructs with the {@link Throwable} that is the underlying cause for the exception.
public SzUnknownDataSourceException(Exception cause)
Parameters
causeExceptionThe underlying cause for the exception.
SzUnknownDataSourceException(long?, string)
Constructs with a message explaining the reason for the exception.
public SzUnknownDataSourceException(long? errorCode, string message)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
SzUnknownDataSourceException(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 SzUnknownDataSourceException(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.
SzUnknownDataSourceException(string)
Constructs with a message explaining the reason for the exception.
public SzUnknownDataSourceException(string message)
Parameters
messagestringThe message explaining the reason for the exception.
SzUnknownDataSourceException(string, Exception)
Constructs with a message explaining the reason for the exception and
the Exception that is the underlying cause for the exception.
public SzUnknownDataSourceException(string message, Exception cause)