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
messagestringThe message that describes the error.
SyncException(string, Exception)
Initializes a new instance of the SyncException class.
public SyncException(string message, Exception innerException)
Parameters
messagestringThe message that describes the error.
innerExceptionExceptionThe 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
messagestringThe message that describes the error.
syncKeystringThe 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)