DeviceNotTrackedException constructor

const DeviceNotTrackedException({
  1. String? recoverySuggestion,
  2. String? underlyingException,
})

Exception thrown when a request is made for a device which is either not currently tracked or previously forgotten.

Implementation

const DeviceNotTrackedException(
    {String? recoverySuggestion, String? underlyingException})
    : super(
        'This device does not have an id, either it was never tracked or previously forgotten.',
        recoverySuggestion: recoverySuggestion,
        underlyingException: underlyingException,
      );