2019-12-06 23:12:34 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Unosquare.RaspberryIO {
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when an exception is thrown in the <c>Bluetooth</c> component.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BluetoothErrorException : Exception {
|
2019-12-04 18:57:18 +01:00
|
|
|
|
/// <summary>
|
2019-12-06 23:12:34 +01:00
|
|
|
|
/// Initializes a new instance of the <see cref="BluetoothErrorException"/> class.
|
2019-12-04 18:57:18 +01:00
|
|
|
|
/// </summary>
|
2019-12-06 23:12:34 +01:00
|
|
|
|
/// <param name="message">The message.</param>
|
|
|
|
|
public BluetoothErrorException(String message) : base(message) {
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-04 18:57:18 +01:00
|
|
|
|
}
|