DeviceNotFoundException.cs 246 B

1234567891011
  1. using System;
  2. namespace BluetoothLENet.Exceptions
  3. {
  4. public class DeviceNotFoundException : Exception
  5. {
  6. public DeviceNotFoundException(Guid deviceId) : base($"Device with Id: {deviceId} not found.")
  7. {
  8. }
  9. }
  10. }