Table of Contents

Class SzBadInputException

Namespace
Senzing.Sdk
Assembly
Senzing.Sdk.dll

Defines an exceptional condition when an invalid input value is provided to a Senzing operation preventing the successful completion of that operation.

public class SzBadInputException : SzException, ISerializable
Inheritance
SzBadInputException
Implements
Derived
Inherited Members

Constructors

SzBadInputException()

Default constructor.

public SzBadInputException()

SzBadInputException(Exception)

Constructs with the {@link Throwable} that is the underlying cause for the exception.

public SzBadInputException(Exception cause)

Parameters

cause Exception

The underlying cause for the exception.

SzBadInputException(long?, string)

Constructs with a message explaing the reason for the exception.

public SzBadInputException(long? errorCode, string message)

Parameters

errorCode long?

The underlying Senzing error code.

message string

The message explaining the reason for the exception.

SzBadInputException(long?, string, Exception)

Constructs with the Senzing error code, the message explaing the reason for the exception and the Exception that is the underlying cause for the exception.

public SzBadInputException(long? errorCode, string message, Exception cause)

Parameters

errorCode long?

The underlying Senzing error code.

message string

The message explaining the reason for the exception.

cause Exception

The underlying cause for the exception.

SzBadInputException(string)

Constructs with a message explaing the reason for the exception.

public SzBadInputException(string message)

Parameters

message string

The message explaining the reason for the exception.

SzBadInputException(string, Exception)

Constructs with a message explaing the reason for the exception and the Exception that is the underlying cause for the exception.

public SzBadInputException(string message, Exception cause)

Parameters

message string

The message explaining the reason for the exception.

cause Exception

The underlying cause for the exception.