namespace Unosquare.RaspberryIO
{
using System;
///
///
/// Occurs when an exception is thrown in the Bluetooth component.
///
public class BluetoothErrorException : Exception
{
///
/// Initializes a new instance of the class.
///
/// The message.
public BluetoothErrorException(string message)
: base(message)
{
}
}
}