Table of Contents

Class ClientDeviceNotFoundException

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

Represents an exception that occurs when attempting to access or remove a ClientDevice that does not exist in a Bluetooth broadcaster.

public class ClientDeviceNotFoundException : BroadcasterException, ISerializable
Inheritance
ClientDeviceNotFoundException
Implements
Inherited Members

Constructors

ClientDeviceNotFoundException(IBluetoothBroadcaster, Exception?)

Initializes a new instance of the ClientDeviceNotFoundException class.

public ClientDeviceNotFoundException(IBluetoothBroadcaster broadcaster, Exception? innerException = null)

Parameters

broadcaster IBluetoothBroadcaster

The Bluetooth broadcaster associated with the exception.

innerException Exception

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

ClientDeviceNotFoundException(IBluetoothBroadcaster, string, Exception?)

Initializes a new instance of the ClientDeviceNotFoundException class.

public ClientDeviceNotFoundException(IBluetoothBroadcaster broadcaster, string id, Exception? innerException = null)

Parameters

broadcaster IBluetoothBroadcaster

The Bluetooth broadcaster associated with the exception.

id string

The UUID of the ClientDevice that was not found.

innerException Exception

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

See Also