Table of Contents

Class SteamNetworkException

Namespace
SteamNetworkLib.Exceptions
Assembly
SteamNetworkLib.dll

Base exception for all Steam networking operations in SteamNetworkLib. This serves as the parent class for more specific networking exceptions.

public class SteamNetworkException : Exception, ISerializable
Inheritance
SteamNetworkException
Implements
Derived
Inherited Members

Constructors

SteamNetworkException()

Initializes a new instance of the SteamNetworkException class.

public SteamNetworkException()

SteamNetworkException(string)

Initializes a new instance of the SteamNetworkException class with a specified error message.

public SteamNetworkException(string message)

Parameters

message string

The message that describes the error.

SteamNetworkException(string, Exception)

Initializes a new instance of the SteamNetworkException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public SteamNetworkException(string message, Exception inner)

Parameters

message string

The error message that explains the reason for the exception.

inner Exception

The exception that is the cause of the current exception, or a null reference if no inner exception is specified.