Table of Contents

Class BroadcasterFailedToStartException

Namespace
Bluetooth.Abstractions.Broadcasting.Exceptions
Assembly
Bluetooth.Abstractions.Broadcasting.dll

Represents an exception that occurs when a Bluetooth broadcaster fails to start.

public class BroadcasterFailedToStartException : BroadcasterException, ISerializable
Inheritance
BroadcasterFailedToStartException
Implements
Derived
Inherited Members

Constructors

BroadcasterFailedToStartException(IBluetoothBroadcaster, string, Exception?)

Initializes a new instance of the BroadcasterFailedToStartException class.

public BroadcasterFailedToStartException(IBluetoothBroadcaster broadcaster, string message = "Failed to start broadcaster", Exception? innerException = null)

Parameters

broadcaster IBluetoothBroadcaster

The Bluetooth broadcaster associated with the exception.

message string

A message that describes the error.

innerException Exception

The inner exception that caused the current exception, if any.

See Also