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