RaspberryIO_26/Unosquare.RaspberryIO/BluetoothErrorException.cs
2019-12-04 18:57:18 +01:00

21 lines
555 B
C#

namespace Unosquare.RaspberryIO
{
using System;
/// <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)
{
}
}
}