Table of Contents

Class SyncException

Namespace
SteamNetworkLib.Sync
Assembly
SteamNetworkLib.dll

Compatibility alias for SyncException.

[Obsolete("Use SteamNetworkLib.Exceptions.SyncException instead.")]
public class SyncException : SyncException, ISerializable
Inheritance
SyncException
Implements
Inherited Members

Remarks

New code should use SyncException from the SteamNetworkLib.Exceptions namespace so all library exceptions share the same base type and diagnostic properties.

Constructors

SyncException(string)

Initializes a new instance of the SyncException class.

public SyncException(string message)

Parameters

message string

The message that describes the error.

SyncException(string, Exception)

Initializes a new instance of the SyncException class.

public SyncException(string message, Exception innerException)

Parameters

message string

The message that describes the error.

innerException Exception

The exception that caused the current exception.

SyncException(string, string)

Initializes a new instance of the SyncException class with key information.

public SyncException(string message, string syncKey)

Parameters

message string

The message that describes the error.

syncKey string

The sync key associated with the operation.

SyncException(string, string, Exception)

Initializes a new instance of the SyncException class with full details.

public SyncException(string message, string syncKey, Exception innerException)

Parameters

message string

The message that describes the error.

syncKey string

The sync key associated with the operation.

innerException Exception

The exception that caused the current exception.