RaspberryIO_26/Unosquare.RaspberryIO/BluetoothErrorException.cs
2019-12-06 23:12:34 +01:00

17 lines
497 B
C#

using System;
namespace Unosquare.RaspberryIO {
/// <inheritdoc />
/// <summary>
/// Occurs when an exception is thrown in the <c>Bluetooth</c> component.
/// </summary>
public class BluetoothErrorException : Exception {
/// <summary>
/// Initializes a new instance of the <see cref="BluetoothErrorException"/> class.
/// </summary>
/// <param name="message">The message.</param>
public BluetoothErrorException(String message) : base(message) {
}
}
}