Table of Contents

Class ConnectorException

Namespace
Cognite.Simulator.Utils
Assembly
Cognite.Simulator.Utils.dll

Represents errors related to the connector operation

public class ConnectorException : Exception, ISerializable
Inheritance
ConnectorException
Implements
Inherited Members

Constructors

ConnectorException()

Creates a new connector exception

public ConnectorException()

ConnectorException(string)

Creates a new connector exception with the given message

public ConnectorException(string message)

Parameters

message string

Error message

ConnectorException(string, IEnumerable<CogniteError>)

Creates a new connector exception with the given message and CDF errors

public ConnectorException(string message, IEnumerable<CogniteError> errors)

Parameters

message string

Error message

errors IEnumerable<CogniteError>

CDF errors

ConnectorException(string, Exception)

Creates a new connector exception with the given message and inner exception

public ConnectorException(string message, Exception innerException)

Parameters

message string

Error message

innerException Exception

Inner exception

Properties

Errors

CDF errors that may have caused this exception

public IEnumerable<CogniteError> Errors { get; }

Property Value

IEnumerable<CogniteError>