DeviceDiscoverException.cs 230 B

1234567891011
  1. using System;
  2. namespace BluetoothLENet.Exceptions
  3. {
  4. public class DeviceDiscoverException : Exception
  5. {
  6. public DeviceDiscoverException() : base("Could not find the specific device.")
  7. {
  8. }
  9. }
  10. }